1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\command;
- 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)
- {
- }
- }
|