From 473f762bd9ae0d606a893984e19e3a5129349be2 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 30 Dec 2018 20:42:41 +0100 Subject: [PATCH] change to include --- Autoloader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }