From 85d54fdd86782bbef76d836acd5d727b7f3cd96d Mon Sep 17 00:00:00 2001 From: Robert Date: Sun, 30 Jul 2023 21:11:45 -0400 Subject: [PATCH] removed dup realpath --- src/bootstrap/requires.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/requires.php b/src/bootstrap/requires.php index 48749b5..3547ba5 100644 --- a/src/bootstrap/requires.php +++ b/src/bootstrap/requires.php @@ -82,7 +82,7 @@ final class requires { return false; } - $dir = escapeshellcmd(realpath($realpath)); + $dir = escapeshellcmd($realpath); return (file_exists($dir)) ? $dir : false; }