Passed
Pull Request — master (#69)
by Ben
02:33
created
src/Git/GetVersionCollectionFromGitRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,14 +31,14 @@
 block discarded – undo
31 31
             ->getOutput();
32 32
 
33 33
         return new VersionsCollection(...array_filter(
34
-            array_map(function (string $maybeVersion) : ?Version {
34
+            array_map(function(string $maybeVersion) : ?Version {
35 35
                 try {
36 36
                     return Version::fromString($maybeVersion);
37 37
                 } catch (InvalidVersionStringException $e) {
38 38
                     return null;
39 39
                 }
40 40
             }, explode("\n", $output)),
41
-            function (?Version $version) {
41
+            function(?Version $version) {
42 42
                 return $version !== null;
43 43
             }
44 44
         ));
Please login to merge, or discard this patch.