| Conditions | 4 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | protected function generateAbsolutePath(string $root, string $path): ?string |
||
| 17 | { |
||
| 18 | if (false === mb_strpos($path, '..'.DIRECTORY_SEPARATOR) && |
||
| 19 | false === mb_strpos($path, DIRECTORY_SEPARATOR.'..') && |
||
| 20 | false !== file_exists($absolute = $root.DIRECTORY_SEPARATOR.$path) |
||
| 21 | ) { |
||
| 22 | return $absolute; |
||
| 23 | } |
||
| 24 | |||
| 25 | return null; |
||
| 26 | } |
||
| 27 | } |
||
| 28 |