I'm trying to migrate some queue code from Laravel 5 to Lumen. I am getting the 'No handler registered for command [App\Jobs\SaveProduct]' error message. Reading through the Lumen documentation, there's no mention of having to register the handler, and you can't run php artisan make:command as it doesn't exist.
Does anyone have a good code example of how to create jobs in Lumen so I can see what I've not done? Cheers
Using Jobs In Lumen
I'm trying to migrate some queue code from Laravel 5 to Lumen. I am getting the 'No handler registered for command [App\Jobs\SaveProduct]' error message. Reading through the Lumen documentation, there's no mention of having to register the handler, and you can't run php artisan make:command as it doesn't exist.
Does anyone have a good code example of how to create jobs in Lumen so I can see what I've not done? Cheers