Deduction.php 425 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\admin\command;
  3. use think\console\Command;
  4. use think\console\Input;
  5. use think\console\Output;
  6. use think\Db;
  7. use think\Exception;
  8. class Deduction extends Command
  9. {
  10. protected function configure()
  11. {
  12. $this->setName('deduction')->setDescription('Here is the remark ');
  13. }
  14. protected function execute(Input $input, Output $output)
  15. {
  16. $output->writeln("TestCommand:");
  17. }
  18. }