1

我正在使用 Lumen 发送批量邮件,但我收到一个错误,例如,

堆栈跟踪:

[2018-07-27 04:57:14] lumen.ERROR: Symfony\Component\Debug\Exception\FatalThrowableError:致命错误:调用 /chroot/home/milopleo/ 中未定义的函数 App\Http\Controllers\dispatch() milople.org/html/development/harsh/presvi/api/app/Http/Controllers/EmailController.php:15

这些是我遵循的步骤, https://appdividend.com/2017/12/21/laravel-queues-tutorial-example-scratch/

4

1 回答 1

1

您正在使用Lumen的没有辅助方法,因此您应该

new PendingDispatch($job); //replace this with dispatch

希望这可以帮助。

于 2018-07-27T12:47:25.570 回答