PHP 클래스 Resque\Commands\Command

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

보호된 프로퍼티들

프로퍼티 타입 설명
$config Config array
$configOptionMap Config to options mapping
$logger The logger instance

공개 메소드들

메소드 설명
log ( ) : boolean Helper function that passes through to logger instance
pollingConsoleOutput ( ) : boolean Should the console output be of the polling format

보호된 메소드들

메소드 설명
getConfig ( $key = null ) : mixed Returns all config items or a specific one
initialize ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : void Initialises the command just after the input has been validated.
mergeDefinitions ( array $definitions ) : array Globally sets some input options that are available for all commands
parseConfig ( $config, $defaults ) : boolean Parses the configuration file

메소드 상세

getConfig() 보호된 메소드

Returns all config items or a specific one
protected getConfig ( $key = null ) : mixed
리턴 mixed

initialize() 보호된 메소드

This is mainly useful when a lot of commands extends one main command where some things need to be initialised based on the input arguments and options.
protected initialize ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : void
$input Symfony\Component\Console\Input\InputInterface An InputInterface instance
$output Symfony\Component\Console\Output\OutputInterface An OutputInterface instance
리턴 void

log() 공개 메소드

Helper function that passes through to logger instance
또한 보기: Logger::log
public log ( ) : boolean
리턴 boolean

mergeDefinitions() 보호된 메소드

Globally sets some input options that are available for all commands
protected mergeDefinitions ( array $definitions ) : array
$definitions array List of command definitions
리턴 array

parseConfig() 보호된 메소드

Parses the configuration file
protected parseConfig ( $config, $defaults ) : boolean
리턴 boolean

pollingConsoleOutput() 공개 메소드

Should the console output be of the polling format
public pollingConsoleOutput ( ) : boolean
리턴 boolean

프로퍼티 상세

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

Config array
protected $config

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

Config to options mapping
protected $configOptionMap

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

The logger instance
protected $logger