@@ -22,7 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | $filesystem = $this->connector->getConnection(); |
24 | 24 | $contents = $filesystem->listContents($this->settings['location'], true); |
25 | - $migrationFiles = array_filter($contents, function ($fileinfo) { |
|
25 | + $migrationFiles = array_filter($contents, function($fileinfo) { |
|
26 | 26 | return isset($fileinfo['extension']) && $fileinfo['extension'] === 'php'; |
27 | 27 | }); |
28 | 28 |