You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-php/sebastian-object-enumerator/files/autoload.php

20 lines
620 B

<?php
/* Autoloader for dev-php/sebastian-object-enumerator */
if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
}
\Fedora\Autoloader\Autoload::addClassMap(
array(
'sebastianbergmann\objectenumerator\enumerator' => '/Enumerator.php',
'sebastianbergmann\objectenumerator\exception' => '/Exception.php',
'sebastianbergmann\objectenumerator\invalidargumentexception' => '/InvalidArgumentException.php',
),
__DIR__
);
\Fedora\Autoloader\Dependencies::required(array(
'/usr/share/php/SebastianBergmann/RecursionContext/autoload.php',
));