| Total Complexity | 7 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | abstract class BasePath implements Pathable |
||
| 8 | { |
||
| 9 | protected $is_json = false; |
||
| 10 | |||
| 11 | 102 | protected function real(string $path): string |
|
| 12 | { |
||
| 13 | 102 | return realpath($path); |
|
| 14 | } |
||
| 15 | |||
| 16 | 102 | protected function clean(string $path = null): ?string |
|
| 21 | } |
||
| 22 | |||
| 23 | 102 | protected function getPathForEnglish(string $locale): string |
|
| 36 |