From a7b4163aa155967de7b372d55af42e2995ed2b15 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 31 Aug 2016 21:34:18 +0200 Subject: php-phpunit-PHPUnit: 5.5.4 --- Autoload.php.in | 64 --------------------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 Autoload.php.in (limited to 'Autoload.php.in') diff --git a/Autoload.php.in b/Autoload.php.in deleted file mode 100644 index 1e87d2e..0000000 --- a/Autoload.php.in +++ /dev/null @@ -1,64 +0,0 @@ -register(); -} - -/* for symfony/yaml */ -$fedoraClassLoader->addPrefix('Symfony\\Component\\', $vendorDir); - -spl_autoload_register( - function ($class) - { - static $classes = NULL; - - if ($classes === NULL) { - $classes = array( - ___CLASSLIST___ - ); - } - - $cn = strtolower($class); - - if (isset($classes[$cn])) { - require __DIR__ . $classes[$cn]; - } - } -); - -/* Optional */ -foreach(array( - 'PHPUnit/Extensions/Database/Autoload.php', - 'PHPUnit/Extensions/SeleniumCommon/Autoload.php', - 'PHPUnit/Extensions/SeleniumTestCase/Autoload.php', - 'PHPUnit/Extensions/Story/Autoload.php' - ) as $opt) { - if ($fic = stream_resolve_include_path($opt)) { - require_once $fic; - } -} -- cgit