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.
Показать файл
Открыть проект
Примеры использования класса
Открытые методы
Описание методов
__construct()
публичный Метод
Creates a new command name.
__toString()
публичный Метод
Casts the command name to a string.
getAliases()
публичный Метод
public getAliases ( ) : string[] |
Результат |
string[] |
The aliases of the command name. |
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.