spatie / laravel-short-schedule

Schedule artisan commands to run at a sub-minute frequency
https://freek.dev/1683-a-package-to-schedule-artisan-commands-at-sub-minute-frequencies
MIT License
611 stars 52 forks source link

PendingShortScheduleCommand::command method will attempt to resolve command name if class name was given #54

Closed etahamer closed 2 years ago

etahamer commented 2 years ago

I noticed difference between original scheduler and shortScheduler that if I pass class name instead of actual artisan command signature, it does not attempt to resolve command name like in original Laravel scheduler (\Illuminate\Console\Scheduling\Schedule::command). So I thought to add such functionality to make it more convenient for for everyone when moving from regular schedule to short schedule.

freekmurze commented 2 years ago

Thanks!