Passed
Push — master ( 430d38...c73103 )
by Mr
03:32
created
src/Migration/RabbitMq3MigrationAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
 
22 22
     public function read(string $identifier): MigrationList
23 23
     {
24
-        $currentMigrations= $this->loadMigrations();
25
-        $migrations = array_filter($currentMigrations, function ($migration) use ($identifier) {
24
+        $currentMigrations = $this->loadMigrations();
25
+        $migrations = array_filter($currentMigrations, function($migration) use ($identifier) {
26 26
             return $migration['routing_key'] === $identifier;
27 27
         });
28 28
 
Please login to merge, or discard this patch.
src/Job/RabbitMq3Worker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $queue = $parameters['queue'];
41 41
         Assertion::notBlank($queue);
42 42
 
43
-        $messageHandler = function (AMQPMessage $message) {
43
+        $messageHandler = function(AMQPMessage $message) {
44 44
             $this->execute($message);
45 45
         };
46 46
 
Please login to merge, or discard this patch.