| 123456789101112131415161718192021 |
- <?php
- namespace app\command;
- use Symfony\Component\Console\Command\Command;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- class BillsMon extends Command
- {
- protected static string $defaultName = 'bills:mon';
- protected static string $defaultDescription = '月度账单-每日更新';
- protected function execute(InputInterface $input, OutputInterface $output): int
- {
- }
- }
|