Cake\Console\Shell::quiet PHP Method

quiet() public method

Output at all levels.
public quiet ( string | array $message, integer $newlines = 1 ) : integer | boolean
$message string | array A string or an array of strings to output
$newlines integer Number of newlines to append
return integer | boolean The number of bytes returned from writing to stdout.
    public function quiet($message, $newlines = 1)
    {
        return $this->_io->quiet($message, $newlines);
    }