我想在工匠cli之外运行queue:listen --tries
命令。为此,我在WelcomeController
中编写了一个“任务”函数,并通过路由对其进行了调用。但是,它会产生上述错误。代码如下:
public function task()
{
Artisan::call('queue:listen', ['--tries'=>'3']);
}
路线如下
Route::post('/fun', array('uses'=>'WelcomeController@task'));