PHP 클래스 Webmozart\Console\Api\Args\Format\CommandName

The command name determines which command should be executed. The console input may contain one or several command names. In the example below, the console arguments contain the two command names "server" and "add": $ console server add localhost The last part "localhost" is the argument to the "server add" command.
부터: 1.0
저자: Bernhard Schussek ([email protected])
파일 보기 프로젝트 열기: webmozart/console 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( string $string, array $aliases = [] ) Creates a new command name.
__toString ( ) : string Casts the command name to a string.
getAliases ( ) : string[] Returns the alias names.
match ( string $string ) : boolean Returns whether a string matches the command name or one of its aliases.
toString ( ) : string Returns the command name as string.

메소드 상세

__construct() 공개 메소드

Creates a new command name.
public __construct ( string $string, array $aliases = [] )
$string string The command name.
$aliases array The alias names.

__toString() 공개 메소드

Casts the command name to a string.
public __toString ( ) : string
리턴 string The command name.

getAliases() 공개 메소드

Returns the alias names.
public getAliases ( ) : string[]
리턴 string[] The aliases of the command name.

match() 공개 메소드

Returns whether a string matches the command name or one of its aliases.
public match ( string $string ) : boolean
$string string The string to test.
리턴 boolean Returns `true` if the given string matches the command name or one of its aliases and `false` otherwise.

toString() 공개 메소드

Returns the command name as string.
public toString ( ) : string
리턴 string The command name.