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

getVerbosity() public method

Returns the current verbosity level.
public getVerbosity ( ) : integer
return integer One of the verbosity constants.
    public function getVerbosity()
    {
        return $this->verbosity;
    }

Usage Example

示例#1
0
文件: IO.php 项目: webmozart/console
 /**
  * Returns the current verbosity level.
  *
  * @return int One of the verbosity constants.
  */
 public function getVerbosity()
 {
     return $this->output->getVerbosity();
 }