@@ -76,9 +76,9 @@ discard block |
||
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 |
||
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 { |
@@ -120,7 +120,7 @@ |
||
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 |
@@ -43,8 +43,8 @@ |
||
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 |