| 123456789101112131415161718192021222324 |
- <?php
- namespace app\command;
- use Symfony\Component\Console\Command\Command;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- class OrderDelay extends Command
- {
- protected static string $defaultName = 'order:delay';
- protected static string $defaultDescription = '超出核销时段订单第二天定时进行核销';
- protected function execute(InputInterface $input, OutputInterface $output): int
- {
- return self::SUCCESS;
- }
- }
|