PHP 인터페이스 Cml\Interfaces\Console

파일 보기 프로젝트 열기: linhecheng/cmlphp

공개 메소드들

메소드 설명
__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 运行命令

메소드 상세

__construct() 공개 메소드

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

addCommand() 공개 메소드

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

addCommands() 공개 메소드

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

getCommand() 공개 메소드

获取某个命令
public getCommand ( string $name ) : mixed
$name string 命令的别名
리턴 mixed

getCommands() 공개 메소드

获取所有命令列表
public getCommands ( ) : array
리턴 array

hasCommand() 공개 메소드

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

run() 공개 메소드

运行命令
public run ( array $argv = null ) : mixed
$argv array
리턴 mixed