diff --git a/src/autoload.php b/src/autoload.php deleted file mode 100644 index 9d4543d..0000000 --- a/src/autoload.php +++ /dev/null @@ -1,33 +0,0 @@ - - * @copyright SciActive.com - * @link http://sciactive.com/ - */ - -spl_autoload_register(function ($class) { - $prefix = 'Nymph\\'; - $base_dir = __DIR__.'/'; - // Does the class use the namespace prefix? - $len = strlen($prefix); - if (strncmp($prefix, $class, $len) !== 0) { - // No, move to the next registered autoloader. - return; - } - // Get the relative class name. - $relative_class = substr($class, $len); - - // Replace the namespace prefix with the base directory, replace namespace - // separators with directory separators in the relative class name, append - // with .php. - $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php'; - - // If the file exists, require it. - if (file_exists($file)) { - require $file; - } -}); \ No newline at end of file diff --git a/testing/bootstrapMySQL.php b/testing/bootstrapMySQL.php index eae5495..c504f02 100644 --- a/testing/bootstrapMySQL.php +++ b/testing/bootstrapMySQL.php @@ -1,12 +1,10 @@