@@ -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 |