hosmelq / laravel-pulse-schedule

Laravel Pulse card that list all scheduled tasks.
MIT License
44 stars 3 forks source link

Doesn't work for `withSchedule()` #4

Open Propaganistas opened 5 months ago

Propaganistas commented 5 months ago

It appears that scheduled tasks defined in Laravel 11's new bootstrap/app.php file using withSchedule() are not discovered by this card:

https://laravel.com/docs/11.x/scheduling#defining-schedules

use Illuminate\Console\Scheduling\Schedule;

->withSchedule(function (Schedule $schedule) {
    $schedule->call(new DeleteRecentUsers)->daily();
})