PHP 클래스 Resque\Helpers\CatchOutput

저자: Michael Haynes ([email protected])
상속: extends Symfony\Component\Console\Output\Output
파일 보기 프로젝트 열기: mjphaynes/php-resque 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$written Stored output string

공개 메소드들

메소드 설명
__construct ( integer $verbosity = self::VERBOSITY_NORMAL, boolean $decorated = true, Symfony\Component\Console\Formatter\OutputFormatterInterface $formatter = null ) Constructor.
write ( string | array $messages, boolean $newline = false, integer $type = self::OUTPUT_RAW ) Writes a message to the output.
written ( ) : string Returns written string so far

보호된 메소드들

메소드 설명
doWrite ( string $message, boolean $newline ) Stores message in a local string

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( integer $verbosity = self::VERBOSITY_NORMAL, boolean $decorated = true, Symfony\Component\Console\Formatter\OutputFormatterInterface $formatter = null )
$verbosity integer The verbosity level (one of the VERBOSITY constants in OutputInterface)
$decorated boolean Whether to decorate messages
$formatter Symfony\Component\Console\Formatter\OutputFormatterInterface Output formatter instance (null to use default OutputFormatter)

doWrite() 보호된 메소드

Stores message in a local string
protected doWrite ( string $message, boolean $newline )
$message string A message to write to the output
$newline boolean Whether to add a newline or not

write() 공개 메소드

Writes a message to the output.
public write ( string | array $messages, boolean $newline = false, integer $type = self::OUTPUT_RAW )
$messages string | array The message as an array of lines or a single string
$newline boolean Whether to add a newline
$type integer The type of output (one of the OUTPUT constants)

written() 공개 메소드

Returns written string so far
public written ( ) : string
리턴 string

프로퍼티 상세

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

Stored output string
protected $written