Completed
Push — master ( ff7f40...377151 )
by David
11:46
created
Command/AmqpDebugCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             )
77 77
         );
78 78
 
79
-        list($queueName, ,) = $channel->queue_declare(
79
+        list($queueName,,) = $channel->queue_declare(
80 80
             "",
81 81
             false,
82 82
             false,
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             )
93 93
         );
94 94
 
95
-        $callback = function ($msg) use ($output, $formatter, $serializer) {
95
+        $callback = function($msg) use ($output, $formatter, $serializer) {
96 96
             $reader = new EventMessageReader($serializer);
97 97
             $message = $reader->readEventMessage($msg->body);
98 98
 
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@
 block discarded – undo
322 322
                             ->cannotBeEmpty()
323 323
                             ->validate()
324 324
                             ->ifNotInArray(['orm', 'event_sourcing', 'hybrid'])
325
-                                ->thenInvalid("Invalid repository type %s, possible values are " .
325
+                                ->thenInvalid("Invalid repository type %s, possible values are ".
326 326
                                             "[\"orm\",\"event_sourcing\",\"hybrid\"]")
327 327
                                 ->end()
328 328
                             ->end()
Please login to merge, or discard this patch.
DependencyInjection/GovernorFrameworkExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
                 'setDispatchInterceptors',
375 375
                 [
376 376
                     array_map(
377
-                        function ($interceptor) {
377
+                        function($interceptor) {
378 378
                             return new Reference($interceptor);
379 379
                         },
380 380
                         $bus['dispatch_interceptors']
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
             'setHandlerInterceptors',
414 414
             [
415 415
                 array_map(
416
-                    function ($interceptor) {
416
+                    function($interceptor) {
417 417
                         return new Reference($interceptor);
418 418
                     },
419 419
                     $bus['handler_interceptors']
Please login to merge, or discard this patch.
Tests/DependencyInjection/GovernorFrameworkExtensionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@
 block discarded – undo
152 152
                 $def = $this->testSubject->getDefinition($id);
153 153
 
154 154
                 $this->assertEquals(Dummy1Aggregate::class, $def->getArgument(0));
155
-                $count++;;
155
+                $count++; ;
156 156
             }
157 157
         }
158 158
 
Please login to merge, or discard this patch.