Completed
Pull Request — master (#15)
by Gabriel
03:36
created
src/Version/Repository/VersionRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,12 +82,12 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.