From a67402fb30b8b210540670d17abab351e1214ae6 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Tue, 9 Jun 2015 14:41:42 -0400 Subject: [PATCH] Remove error if autoloader does not find class So this library can play nice with other autoloaders --- autoload.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/autoload.php b/autoload.php index 516f47b9..fbecbc5f 100644 --- a/autoload.php +++ b/autoload.php @@ -14,7 +14,5 @@ if (isset($classMap[$className])) { include $classMap[$className]; - } else { - echo 'Class not loaded: ' . $className; } });