diff --git a/Autoloader.php b/Autoloader.php index 7a44cfe09..5271dfb9d 100644 --- a/Autoloader.php +++ b/Autoloader.php @@ -82,7 +82,7 @@ final class Autoloader foreach (self::$paths as $path) { if (\file_exists($file = $path . $class . '.php')) { - include_once $file; + include $file; return; }