2
0

UpgradeProgress.php 481 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Attributes\Description;
  4. use Illuminate\Console\Attributes\Signature;
  5. use Illuminate\Console\Command;
  6. #[Signature('app:upgrade-progress')]
  7. #[Description('Command description')]
  8. class UpgradeProgress extends Command
  9. {
  10. /**
  11. * Execute the console command.
  12. */
  13. public function handle()
  14. {
  15. //
  16. $this->call('upgrade:progress.para');
  17. $this->call('upgrade:progress.chapter');
  18. }
  19. }