@@ -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 | |
@@ -40,7 +40,7 @@ |
||
| 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 | |