summaryrefslogtreecommitdiffstats
path: root/Autoload.php.in
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-08-13 13:27:00 +0200
committerRemi Collet <fedora@famillecollet.com>2015-08-13 13:27:00 +0200
commitaa26c3cd332433da2573f5270591c9cf09716267 (patch)
tree9b696e85dd016b903a345a96933e7e9a791c22f5 /Autoload.php.in
parentf6154c63761691664674e07de86b851dc532768d (diff)
php-phpunit-PHP-TokenStream: 1.4.4
Diffstat (limited to 'Autoload.php.in')
-rw-r--r--Autoload.php.in24
1 files changed, 0 insertions, 24 deletions
diff --git a/Autoload.php.in b/Autoload.php.in
deleted file mode 100644
index 308048c..0000000
--- a/Autoload.php.in
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-/* Inspipred from Autoload from version 1.2.2 */
-
-spl_autoload_register(
- function ($class)
- {
- static $classes = NULL;
- static $path = NULL;;
-
- if ($classes === NULL) {
- $classes = array(
- ___CLASSLIST___
- );
-
- $path = __DIR__;
- }
-
- $cn = strtolower($class);
-
- if (isset($classes[$cn])) {
- require $path . $classes[$cn];
- }
- }
-); \ No newline at end of file