@@ -82,12 +82,12 @@ |
||
| 82 | 82 | return true; // nothing to do - exit early |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - $mapToIds = function(VersionInterface $v) { |
|
| 85 | + $mapToIds = function (VersionInterface $v) { |
|
| 86 | 86 | return $v->getId(); |
| 87 | 87 | }; |
| 88 | 88 | /** @var CollectionInterface $migrated */ |
| 89 | 89 | /** @var CollectionInterface $notMigrated */ |
| 90 | - list($migrated, $notMigrated) = $versions->partition(function($i, VersionInterface $v) { |
|
| 90 | + list($migrated, $notMigrated) = $versions->partition(function ($i, VersionInterface $v) { |
|
| 91 | 91 | return $v->isMigrated(); |
| 92 | 92 | }); |
| 93 | 93 | $migratedIds = $migrated->map($mapToIds); |