| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Nwidart\LaravelBroadway\Broadway; |
||
| 9 | public function register() |
||
| 10 | { |
||
| 11 | $this->app->singleton(\Broadway\CommandHandling\CommandBus::class, function () { |
||
| 12 | return new SimpleCommandBus(); |
||
| 13 | }); |
||
| 14 | |||
| 15 | $this->app->singleton('laravelbroadway.command.registry', function ($app) { |
||
| 16 | return new CommandRegistry($app[\Broadway\CommandHandling\CommandBus::class]); |
||
| 17 | }); |
||
| 18 | } |
||
| 19 | } |
||
| 20 |