Webmozart\Console\Api\IO\Output::isQuiet PHP Метод

isQuiet() публичный Метод

Returns whether output is suppressed completely.
public isQuiet ( ) : boolean
Результат boolean Returns `true` if all output is suppressed and `false` otherwise.
    public function isQuiet()
    {
        return $this->quiet;
    }

Usage Example

Пример #1
0
 /**
  * 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();
 }