12345678910111213141516171819202122232425 |
- <?php
- namespace app\admin\command;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- class AutoTask extends Command
- {
- public function configure()
- {
- $this
- ->setName('AutoTask')
- ->setDescription('自动下发定时指令');
- }
- public function execute(Input $input, Output $output)
- {
-
-
-
- echo "自动执行启动了";
- }
- }
|