Passed
Pull Request — master (#122)
by Marco
04:36
created
test/e2e/Command/AssertBackwardsCompatibleTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
             (new Process(['git', 'add', '-A'], $this->sourcesRepository))->mustRun();
140 140
             (new Process(['git', 'commit', '-am', sprintf('Class sources v%d', $key + 1)], $this->sourcesRepository))->mustRun();
141 141
             $this->versions[$key] = trim((new Process(['git', 'rev-parse', 'HEAD'], $this->sourcesRepository))->mustRun()
142
-                                                                                                      ->getOutput());
142
+                                                                                                        ->getOutput());
143 143
         }
144 144
     }
145 145
 
Please login to merge, or discard this patch.
src/SourceLocator/StaticClassMapSourceLocator.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@
 block discarded – undo
18 18
     /** @var string[] */
19 19
     private $classMap;
20 20
 
21
-     /**
22
-      * @param array<string, string> $classMap map of class => file. Every file must exist,
23
-      *                                        every key must be non-empty
24
-      */
21
+        /**
22
+         * @param array<string, string> $classMap map of class => file. Every file must exist,
23
+         *                                        every key must be non-empty
24
+         */
25 25
     public function __construct(
26 26
         array $classMap,
27 27
         Locator $astLocator
Please login to merge, or discard this patch.