@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | $this->publishes([ |
| 64 | 64 | realpath( |
| 65 | 65 | dirname(__FILE__) |
| 66 | - ) . '/../../config/laravel_rabbitmq.php' => config_path('laravel_rabbitmq.php'), |
|
| 66 | + ).'/../../config/laravel_rabbitmq.php' => config_path('laravel_rabbitmq.php'), |
|
| 67 | 67 | ]); |
| 68 | 68 | } |
| 69 | 69 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | $this->app->singleton( |
| 85 | 85 | Container::class, |
| 86 | - function () use ($config) { |
|
| 86 | + function() use ($config) { |
|
| 87 | 87 | $container = new ContainerBuilder(); |
| 88 | 88 | return $container->createContainer($config); |
| 89 | 89 | } |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | private function registerPublishers() |
| 97 | 97 | { |
| 98 | 98 | // Get "tagged" like Publisher |
| 99 | - $this->app->singleton(PublisherInterface::class, function ($application, $arguments) { |
|
| 99 | + $this->app->singleton(PublisherInterface::class, function($application, $arguments) { |
|
| 100 | 100 | /** @var Container $container */ |
| 101 | 101 | $container = $application->make(Container::class); |
| 102 | 102 | if (empty($arguments)) { |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | private function registerConsumers() |
| 114 | 114 | { |
| 115 | 115 | // Get "tagged" like Consumers |
| 116 | - $this->app->singleton(ConsumerInterface::class, function ($application, $arguments) { |
|
| 116 | + $this->app->singleton(ConsumerInterface::class, function($application, $arguments) { |
|
| 117 | 117 | /** @var Container $container */ |
| 118 | 118 | $container = $application->make(Container::class); |
| 119 | 119 | if (empty($arguments)) { |