PHP 클래스 tad\WPBrowser\Console\Output\OutputDecorator

파일 보기 프로젝트 열기: lucatume/wp-browser

보호된 프로퍼티들

프로퍼티 타입 설명
$output The decorated output.

공개 메소드들

메소드 설명
__construct ( Symfony\Component\Console\Output\OutputInterface $output ) OutputDecorator constructor.
getFormatter ( ) : Symfony\Component\Console\Formatter\OutputFormatterInterface Returns current output formatter instance.
getVerbosity ( ) : integer Gets the current verbosity of the output.
isDecorated ( ) : boolean Gets the decorated flag.
setDecorated ( boolean $decorated ) Sets the decorated flag.
setFormatter ( Symfony\Component\Console\Formatter\OutputFormatterInterface $formatter ) Sets output formatter.
setVerbosity ( integer $level ) Sets the verbosity of the output.

메소드 상세

__construct() 공개 메소드

OutputDecorator constructor.
public __construct ( Symfony\Component\Console\Output\OutputInterface $output )
$output Symfony\Component\Console\Output\OutputInterface

getFormatter() 공개 메소드

Returns current output formatter instance.
public getFormatter ( ) : Symfony\Component\Console\Formatter\OutputFormatterInterface
리턴 Symfony\Component\Console\Formatter\OutputFormatterInterface

getVerbosity() 공개 메소드

Gets the current verbosity of the output.
public getVerbosity ( ) : integer
리턴 integer The current level of verbosity (one of the VERBOSITY constants)

isDecorated() 공개 메소드

Gets the decorated flag.
public isDecorated ( ) : boolean
리턴 boolean true if the output will decorate messages, false otherwise

setDecorated() 공개 메소드

Sets the decorated flag.
public setDecorated ( boolean $decorated )
$decorated boolean Whether to decorate the messages

setFormatter() 공개 메소드

Sets output formatter.
public setFormatter ( Symfony\Component\Console\Formatter\OutputFormatterInterface $formatter )
$formatter Symfony\Component\Console\Formatter\OutputFormatterInterface

setVerbosity() 공개 메소드

Sets the verbosity of the output.
public setVerbosity ( integer $level )
$level integer The level of verbosity (one of the VERBOSITY constants)

프로퍼티 상세

$output 보호되어 있는 프로퍼티

The decorated output.
protected $output