@@ -139,7 +139,7 @@ |
||
| 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 | |
@@ -18,10 +18,10 @@ |
||
| 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 |