@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | $this->publishes([ |
55 | 55 | realpath( |
56 | 56 | dirname(__FILE__) |
57 | - ) . '/../../config/laravel_rabbitmq.php' => config_path('laravel_rabbitmq.php'), |
|
57 | + ).'/../../config/laravel_rabbitmq.php' => config_path('laravel_rabbitmq.php'), |
|
58 | 58 | ]); |
59 | 59 | } |
60 | 60 | |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | |
75 | 75 | $this->app->singleton( |
76 | 76 | Container::class, |
77 | - function () use ($config) { |
|
77 | + function() use ($config) { |
|
78 | 78 | $container = new ContainerBuilder(); |
79 | 79 | return $container->createContainer($config); |
80 | 80 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | private function registerPublishers() |
88 | 88 | { |
89 | 89 | // Get "tagged" like Publisher |
90 | - $this->app->singleton(PublisherInterface::class, function (Application $application, $arguments) { |
|
90 | + $this->app->singleton(PublisherInterface::class, function(Application $application, $arguments) { |
|
91 | 91 | /** @var Container $container */ |
92 | 92 | $container = $application->make(Container::class); |
93 | 93 | if (empty($arguments)) { |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | private function registerConsumers() |
105 | 105 | { |
106 | 106 | // Get "tagged" like Consumers |
107 | - $this->app->singleton(ConsumerInterface::class, function (Application $application, $arguments) { |
|
107 | + $this->app->singleton(ConsumerInterface::class, function(Application $application, $arguments) { |
|
108 | 108 | /** @var Container $container */ |
109 | 109 | $container = $application->make(Container::class); |
110 | 110 | if (empty($arguments)) { |