BillsMon.php 455 B

123456789101112131415161718192021
  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 BillsMon extends Command
  7. {
  8. protected static string $defaultName = 'bills:mon';
  9. protected static string $defaultDescription = '月度账单-每日更新';
  10. protected function execute(InputInterface $input, OutputInterface $output): int
  11. {
  12. }
  13. }