1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\command;
- // +----------------------------------------------------------------------
- // | [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2018-2020 rights reserved.
- // +----------------------------------------------------------------------
- // | Author: TABLE ME
- // +----------------------------------------------------------------------
- // | Date: 2020-09-08 16:19
- // +----------------------------------------------------------------------
- use app\model\system\Product;
- use library\utils\Qiniu;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- class Task extends Command
- {
- protected function configure()
- {
- // 指令配置
- $this->setName('Task')
- ->setDescription('任务执行期');
- }
- protected function execute(Input $input, Output $output)
- {
- }
- }
|