From c7c2218f1b747ba324b274904fa20f8e8eec17c2 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 2 Oct 2023 02:56:47 +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 c33ea9b..df746a7 100755 --- a/tests/Autoloader.php +++ b/tests/Autoloader.php @@ -99,12 +99,10 @@ final class Autoloader foreach (self::$paths as $path) { if (($file = \realpath($path . $class2 . '.php')) !== false && \stripos($file, $class3) !== false) { include_once $file; - echo $file . "\n"; return; } elseif (\is_file($file = $path . $class . '.php')) { include_once $file; - echo $file . "\n"; return; }