PHP Interface Cml\Interfaces\Console

Afficher le fichier Open project: linhecheng/cmlphp

Méthodes publiques

Méthode Description
__construct ( array $commands = [] ) 构造函数
addCommand ( string $class, null $alias = null ) 注册一个命令
addCommands ( array $commands ) 批量添加命令
getCommand ( string $name ) : mixed 获取某个命令
getCommands ( ) : array 获取所有命令列表
hasCommand ( string $name ) : boolean 判断是否有无命令
run ( array $argv = null ) : mixed 运行命令

Method Details

__construct() public méthode

构造函数
public __construct ( array $commands = [] )
$commands array

addCommand() public méthode

注册一个命令
public addCommand ( string $class, null $alias = null )
$class string 类名
$alias null 命令别名

addCommands() public méthode

批量添加命令
public addCommands ( array $commands )
$commands array 命令列表

getCommand() public méthode

获取某个命令
public getCommand ( string $name ) : mixed
$name string 命令的别名
Résultat mixed

getCommands() public méthode

获取所有命令列表
public getCommands ( ) : array
Résultat array

hasCommand() public méthode

判断是否有无命令
public hasCommand ( string $name ) : boolean
$name string 命令的别名
Résultat boolean

run() public méthode

运行命令
public run ( array $argv = null ) : mixed
$argv array
Résultat mixed