123456789101112131415161718192021 |
- <?php
- namespace app\admin\command;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- use think\Db;
- use think\Exception;
- class Deduction extends Command
- {
- protected function configure()
- {
- $this->setName('deduction')->setDescription('Here is the remark ');
- }
- protected function execute(Input $input, Output $output)
- {
- $output->writeln("TestCommand:");
- }
- }
|