在Laravel Scheduler函数中,everyMinute()不起作用

时间:2016-01-05 03:32:54

标签: laravel-5 scheduler

我正在使用Laravel 5.在我的Schedule方法(在kernel.php中)中,我使用了everyMinute函数。请看一下:

enter image description here

但它不起作用。它显示消息“调用未定义的方法”。请看一下:

enter image description here

我需要通过呼叫功能每分钟调用一次调度程序。请帮帮我。

2 个答案:

答案 0 :(得分:3)

它似乎没有在5.0中使用该方法。

每分钟使用手动cron表达式。

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

答案 1 :(得分:1)

嗯,Laravel明确地告诉你,在Schedule中没有定义为everyMinute的方法。忘记official documentation,它不在API Documentation和Laravel 5.0中。*。

如果您真的希望每分钟都运行一次,可以将应用升级到Laravel 5.1。*或更高版本。