From 78ce2be4410e29648a123469d9fcba165d5e1fa6 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 27 Sep 2023 04:25:22 +0000 Subject: [PATCH] fix autoloading --- tests/Autoloader.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Autoloader.php b/tests/Autoloader.php index 910410c..dde267a 100755 --- a/tests/Autoloader.php +++ b/tests/Autoloader.php @@ -80,8 +80,6 @@ public static function defaultAutoloader(string $class) : void if (\stripos($class, 'Web/Backend') !== false || \stripos($class, 'Web/Api') !== false) { $class = \str_replace('Web/', 'Install/Application/', $class); - } elseif (\stripos($class, 'Autoloader') !== false) { - $class = 'tests/Autoloader.php'; } $class2 = $class;