gentoo/dev-php/File_Iterator/files/autoload-2.0.2.php
Brian Evans 8f19b30237
dev-php/File_Iterator: Revbump to fix autoload file
It was not changed to the modern namespaced classes

Signed-off-by: Brian Evans <grknight@gentoo.org>
2019-12-20 13:34:23 -05:00

16 lines
441 B
PHP

<?php
/* Autoloader for dev-php/File_Iterator */
if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
}
\Fedora\Autoloader\Autoload::addClassMap(
[
'sebastianbergmann\\fileiterator\\facade' => '/Facade.php',
'sebastianbergmann\\fileiterator\\factory' => '/Factory.php',
'sebastianbergmann\\fileiterator\\iterator' => '/Iterator.php',
],
__DIR__
);