mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-16 17:47:26 -08:00
It was not changed to the modern namespaced classes Signed-off-by: Brian Evans <grknight@gentoo.org>
16 lines
441 B
PHP
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__
|
|
);
|