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>
This commit is contained in:
Brian Evans
2019-12-20 13:29:38 -05:00
parent af347e1ad8
commit 8f19b30237
2 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?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__
);