change to include

This commit is contained in:
Dennis Eichhorn 2018-12-30 20:42:41 +01:00
parent 54409c9f12
commit 473f762bd9

View File

@ -82,7 +82,7 @@ final class Autoloader
foreach (self::$paths as $path) { foreach (self::$paths as $path) {
if (\file_exists($file = $path . $class . '.php')) { if (\file_exists($file = $path . $class . '.php')) {
include_once $file; include $file;
return; return;
} }