| Conditions | 4 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | protected function generateAbsolutePath(string $root, string $path): ?string |
||
| 23 | { |
||
| 24 | if (false === mb_strpos($path, '..'.DIRECTORY_SEPARATOR) && |
||
| 25 | false === mb_strpos($path, DIRECTORY_SEPARATOR.'..') && |
||
| 26 | false !== file_exists($absolute = $root.DIRECTORY_SEPARATOR.$path) |
||
| 27 | ) { |
||
| 28 | return $absolute; |
||
| 29 | } |
||
| 30 | |||
| 31 | return null; |
||
| 32 | } |
||
| 33 | } |
||
| 34 |