PHP Класс Webmozart\Console\Resolver\ResolveResult

С версии: 1.0
Автор: Bernhard Schussek ([email protected])
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__construct ( Command $command, Webmozart\Console\Api\Args\RawArgs $rawArgs ) Creates a new resolved command.
getCommand ( ) : Command Returns the command.
getParseError ( ) : Webmozart\Console\Api\Args\CannotParseArgsException Returns the error that happened during argument parsing.
getParsedArgs ( ) : Args Returns the parsed console arguments.
getRawArgs ( ) : Webmozart\Console\Api\Args\RawArgs The raw console arguments.
isParsable ( ) : boolean Returns whether the console arguments can be parsed.

Приватные методы

Метод Описание
parse ( )

Описание методов

__construct() публичный Метод

Creates a new resolved command.
public __construct ( Command $command, Webmozart\Console\Api\Args\RawArgs $rawArgs )
$command Webmozart\Console\Api\Command\Command The command.
$rawArgs Webmozart\Console\Api\Args\RawArgs The raw console arguments.

getCommand() публичный Метод

Returns the command.
public getCommand ( ) : Command
Результат Webmozart\Console\Api\Command\Command The command.

getParseError() публичный Метод

Returns the error that happened during argument parsing.
public getParseError ( ) : Webmozart\Console\Api\Args\CannotParseArgsException
Результат Webmozart\Console\Api\Args\CannotParseArgsException The parse error or `null` if the arguments were parsed successfully.

getParsedArgs() публичный Метод

Returns the parsed console arguments.
public getParsedArgs ( ) : Args
Результат Webmozart\Console\Api\Args\Args The parsed console arguments or `null` if the console arguments cannot be parsed.

getRawArgs() публичный Метод

The raw console arguments.
public getRawArgs ( ) : Webmozart\Console\Api\Args\RawArgs
Результат Webmozart\Console\Api\Args\RawArgs The raw console arguments.

isParsable() публичный Метод

Returns whether the console arguments can be parsed.
public isParsable ( ) : boolean
Результат boolean Returns `true` if the console arguments can be parsed and `false` if a parse error occurred.