diff --git a/Autoloader.php b/Autoloader.php index f4aba17ac..891338513 100644 --- a/Autoloader.php +++ b/Autoloader.php @@ -72,7 +72,7 @@ class Autoloader $class = str_replace(['_', '\\'], '/', $class); foreach (self::$paths as $path) { - if (file_exists($file = $path . $class . '.php')) { + if (file_exists($file = $path . $class . '.php')) { include_once $file; return;