OrderDelay.php 517 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\command;
  3. use Symfony\Component\Console\Command\Command;
  4. use Symfony\Component\Console\Input\InputInterface;
  5. use Symfony\Component\Console\Output\OutputInterface;
  6. class OrderDelay extends Command
  7. {
  8. protected static string $defaultName = 'order:delay';
  9. protected static string $defaultDescription = '超出核销时段订单第二天定时进行核销';
  10. protected function execute(InputInterface $input, OutputInterface $output): int
  11. {
  12. return self::SUCCESS;
  13. }
  14. }