13 lines
344 B
PHP
13 lines
344 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
|
|
'plugin:package' => 'app\command\PluginPackage',
|
|
'cron' => 'app\command\Cron',
|
|
],
|
|
];
|