From cc22beab3ec8ead2d672bfa040d18055ea16d71b Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 29 Mar 2018 13:48:00 +0200 Subject: [PATCH] Fix indention --- Autoloader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;