validate absolute path constructed

This commit is contained in:
yggverse 2024-05-06 05:27:21 +03:00
parent 502fb9c74c
commit f71b083e81

View File

@ -219,6 +219,11 @@ class Filesystem
return null;
}
if (!$this->valid($realpath))
{
return null;
}
return $realpath;
}