@@ -21,8 +21,8 @@ |
||
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 |
@@ -37,7 +37,7 @@ |
||
37 | 37 | $queue = $this->settings['queue']; |
38 | 38 | Assertion::notBlank($queue); |
39 | 39 | |
40 | - $messageHandler = function (AMQPMessage $message) { |
|
40 | + $messageHandler = function(AMQPMessage $message) { |
|
41 | 41 | $this->execute($message); |
42 | 42 | }; |
43 | 43 |