Skip to content

Commit 638cb65

Browse files
committed
Remove temporary solution mapper
1 parent f01d534 commit 638cb65

File tree

4 files changed

+1
-156
lines changed

4 files changed

+1
-156
lines changed

Diff for: src/Solution/DirectorySolution.php

-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ public function __construct(string $directory, string $entryPoint, array $exclus
8888
*/
8989
public static function fromDirectory(string $directory, array $exclusions = [], $entryPoint = 'solution.php'): self
9090
{
91-
$directory = InTempSolutionMapper::mapDirectory($directory);
9291
return new self($directory, $entryPoint, array_merge($exclusions, ['composer.lock', 'vendor']));
9392
}
9493

Diff for: src/Solution/InTempSolutionMapper.php

-58
This file was deleted.

Diff for: src/Solution/SingleFileSolution.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct(string $file)
3838
*/
3939
public static function fromFile(string $file): self
4040
{
41-
return new self(InTempSolutionMapper::mapFile($file));
41+
return new self($file);
4242
}
4343

4444
/**

Diff for: test/Solution/InTempSolutionMapperTest.php

-96
This file was deleted.

0 commit comments

Comments
 (0)