isQuiet() public method

Returns whether output is suppressed completely.
public isQuiet ( ) : boolean
return boolean Returns `true` if all output is suppressed and `false` otherwise.
示例#1
0
文件: IO.php 项目: webmozart/console
 /**
  * Returns whether all output is suppressed.
  *
  * @return bool Returns `true` if all output is suppressed and `false`
  *              otherwise.
  */
 public function isQuiet()
 {
     return $this->output->isQuiet();
 }