From 651e48ad5f5e37a67751913e9a929fc492eaf7e6 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 27 Sep 2023 04:25:20 +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 b2bd1f9..ec5dfc1 100644 --- a/tests/Autoloader.php +++ b/tests/Autoloader.php @@ -80,8 +80,6 @@ final class Autoloader 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;