| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | final class WithoutSuffixAbsolutePathStrategy implements AbsolutePathStrategyInterface |
||
| 8 | { |
||
| 9 | private string $appRootDir; |
||
| 10 | |||
| 11 | 26 | public function __construct(string $appRootDir) |
|
| 12 | { |
||
| 13 | 26 | $this->appRootDir = $appRootDir; |
|
| 14 | 26 | } |
|
| 15 | |||
| 16 | 26 | public function generateAbsolutePath(string $relativePath): string |
|
| 22 | ); |
||
| 23 | } |
||
| 25 |