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