Search code examples
laravel-5scheduler

In Laravel Scheduler function, everyMinute() does not work


I'm using Laravel 5. In my Schedule method (in kernel.php), i used everyMinute function. Please take a look:

enter image description here

But its not working. It shows message "Call to undefined method". Please take a look:

enter image description here

I need to call scheduler every minute via call function. Please help me.


Solution

  • It doesn't appear to have that method in 5.0.

    Use the manual cron expression for every minute.

    $schedule->call(...)->cron('* * * * * *');