Passed
Pull Request — master (#179)
by Nikola
02:37
created
src/Git/GetVersionCollectionFromGitRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             ->getOutput();
33 33
 
34 34
         return new VersionCollection(...array_filter(
35
-            array_map(static function (string $maybeVersion) : ?Version {
35
+            array_map(static function(string $maybeVersion) : ?Version {
36 36
                 try {
37 37
                     return Version::fromString($maybeVersion);
38 38
                 } catch (InvalidVersionString $e) {
Please login to merge, or discard this patch.
src/Git/PickLastMinorVersionFromCollection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         $stableVersions = $versions->matching(new class implements Constraint {
30 30
             public function assert(Version $version) : bool
31 31
             {
32
-                return ! $version->isPreRelease();
32
+                return !$version->isPreRelease();
33 33
             }
34 34
         });
35 35
 
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
         $lastVersion = $versionsSortedDescending->first();
39 39
 
40 40
         $matchingMinorVersions = $stableVersions
41
-            ->matching(CompositeConstraint::and(
41
+            ->matching(CompositeConstraint:: and (
42 42
                 OperationConstraint::lessOrEqualTo($lastVersion),
43
-                OperationConstraint::greaterOrEqualTo(Version::fromString($lastVersion->getMajor() . '.' . $lastVersion->getMinor() . '.0'))
43
+                OperationConstraint::greaterOrEqualTo(Version::fromString($lastVersion->getMajor().'.'.$lastVersion->getMinor().'.0'))
44 44
             ))
45 45
             ->sortedAscending();
46 46
 
Please login to merge, or discard this patch.
test/unit/Git/PickLastMinorVersionFromCollectionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         self::assertSame(
49 49
             $expectedVersion,
50 50
             (new PickLastMinorVersionFromCollection())->forVersions(
51
-                new VersionCollection(...array_map(static function (string $version) : Version {
51
+                new VersionCollection(...array_map(static function(string $version) : Version {
52 52
                     return Version::fromString($version);
53 53
                 }, $collectionOfVersions))
54 54
             )->toString()
Please login to merge, or discard this patch.
test/unit/Git/GetVersionCollectionFromGitRepositoryTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function setUp() : void
28 28
     {
29
-        $tmpGitRepo = sys_get_temp_dir() . '/api-compare-' . uniqid('tmpGitRepo', true);
29
+        $tmpGitRepo = sys_get_temp_dir().'/api-compare-'.uniqid('tmpGitRepo', true);
30 30
         mkdir($tmpGitRepo, 0777, true);
31 31
         (new Process(['git', 'init']))->setWorkingDirectory($tmpGitRepo)->mustRun();
32
-        file_put_contents($tmpGitRepo . '/test', uniqid('testContent', true));
32
+        file_put_contents($tmpGitRepo.'/test', uniqid('testContent', true));
33 33
         (new Process(['git', 'add', '.']))->setWorkingDirectory($tmpGitRepo)->mustRun();
34 34
         (new Process(['git', 'commit', '-m', '"whatever"']))->setWorkingDirectory($tmpGitRepo)->mustRun();
35 35
         $this->repoPath = CheckedOutRepository::fromPath($tmpGitRepo);
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     private function getTags() : array
50 50
     {
51 51
         return array_map(
52
-            static function (Version $version) : string {
52
+            static function(Version $version) : string {
53 53
                 return $version->toString();
54 54
             },
55 55
             iterator_to_array((new GetVersionCollectionFromGitRepository())->fromRepository($this->repoPath))
Please login to merge, or discard this patch.