bus maintained by laravelcollective
Description
The Laravel Bus (5.1) package for use in Laravel 5.3.
Authors
Last update
2016/08/28 02:02
(5.3.x-dev)
License
Downloads
293 447
Bus
This package provides an implementation of the Illuminate\Contracts\Bus\Dispatcher interface that matches the Laravel 5.1.x implementation with separate commands and handlers.
Installation
- Remove
Illuminate\Bus\BusServiceProviderfrom yourapp.phpconfiguration file. - Add
Collective\Bus\BusServiceProviderto yourapp.phpconfiguration file.
If you are type-hinting Illuminate\Bus\Dispatcher, you should now type-hint Collective\Bus\Dispatcher.
If upgrading from 5.2, you should use Collective\Bus\Contracts\SelfHandling instead of Illuminate\Contracts\Bus\SelfHandling to indicate that a command does not use a separate handler class.