Webmozart\Console\Api\IO\Output::isVeryVerbose PHP Method

isVeryVerbose() public method

Returns whether the verbosity level is {@link IO::VERY_VERBOSE} or greater.
public isVeryVerbose ( ) : boolean
return boolean Returns `true` if the verbosity level is {@link IO::VERY_VERBOSE} or greater and `false` otherwise.
    public function isVeryVerbose()
    {
        return $this->verbosity >= IO::VERY_VERBOSE;
    }

Usage Example

示例#1
0
文件: IO.php 项目: webmozart/console
 /**
  * Returns whether the verbosity is {@link VERY_VERBOSE} or greater.
  *
  * @return bool Returns `true` if the verbosity is {@link VERY_VERBOSE} or
  *              greater and `false` otherwise.
  */
 public function isVeryVerbose()
 {
     return $this->output->isVeryVerbose();
 }