Passed
Pull Request — master (#118)
by Marco
02:47
created
src/LocateDependencies/LocateDependenciesViaComposer.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -76,9 +76,9 @@  discard block
 block discarded – undo
76 76
         $classMap = $classMapProperty->getDefaultValue();
77 77
 
78 78
         Assert::that($classMap)
79
-              ->isArray()
80
-              ->all()
81
-              ->file();
79
+                ->isArray()
80
+                ->all()
81
+                ->file();
82 82
 
83 83
         return new StaticClassMapSourceLocator($classMap, $this->astLocator);
84 84
     }
@@ -92,9 +92,9 @@  discard block
 block discarded – undo
92 92
         $filesMap = $filesMapProperty->getDefaultValue();
93 93
 
94 94
         Assert::that($filesMap)
95
-              ->isArray()
96
-              ->all()
97
-              ->file();
95
+                ->isArray()
96
+                ->all()
97
+                ->file();
98 98
 
99 99
         return new AggregateSourceLocator(array_values(array_map(
100 100
             function (string $path) : SourceLocator {
Please login to merge, or discard this patch.
test/e2e/Command/AssertBackwardsCompatibleTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
             (new Process('git add -A', $this->sourcesRepository))->mustRun();
121 121
             (new Process(sprintf('git commit -am "Class sources v%d"', $key + 1), $this->sourcesRepository))->mustRun();
122 122
             $this->versions[$key] = trim((new Process('git rev-parse HEAD', $this->sourcesRepository))->mustRun()
123
-                                                                                                      ->getOutput());
123
+                                                                                                        ->getOutput());
124 124
         }
125 125
     }
126 126
 
Please login to merge, or discard this patch.
src/LocateSources/LocateSourcesViaComposerJson.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
         $composerJsonPath = $realInstallationPath . '/composer.json';
44 44
 
45 45
         Assert::that($composerJsonPath)
46
-              ->file()
47
-              ->readable();
46
+                ->file()
47
+                ->readable();
48 48
 
49 49
         $composerDefinitionString = file_get_contents($composerJsonPath);
50 50
 
Please login to merge, or discard this patch.