diff --git a/src/MD_STD.php b/src/MD_STD.php index d81ea69..a12caab 100644 --- a/src/MD_STD.php +++ b/src/MD_STD.php @@ -44,7 +44,7 @@ final class MD_STD { public static function realpath(string $path):string { $output = \realpath($path); - if (!\is_string($output) || empty($output)) { + if (!\is_string($output)) { throw new MDFileDoesNotExist("The file {$path} does not exist or is not readable."); } return $output;