isVerbose() public method

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