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.
Example #1
0
 /**
  * Output at all levels.
  *
  * @param string|array $message A string or an array of strings to output
  * @param int $newlines Number of newlines to append
  * @return int|bool Returns the number of bytes returned from writing to stdout.
  */
 public function quiet($message, $newlines = 1)
 {
     return $this->_io->quiet($message, $newlines);
 }