我在Kernel.php中有一个任务设置如下:
protected function schedule(Schedule $schedule)
{
$schedule->call('App\Http\Controllers\UserAccountsController@salesAddToDB')
->everyMinute();
}
锻造我设置如下:
148957 Custom * * * * * forge php /home/forge/default/artisan schedule:run
在我的实时服务器上,我尝试了php artisan schedule:run
我都收到错误No scheduled commands are ready to run.
有人可以解释一下原因吗?