gentoo/dev-php/PHP_Timer/files/autoload-5.0.3.php
Brian Evans 5da9fa558b
dev-php/PHP_Timer: Version bump for 5.0.3
Signed-off-by: Brian Evans <grknight@gentoo.org>
2022-01-07 09:34:00 -05:00

19 lines
744 B
PHP

<?php
/* Autoloader for dev-php/PHP_Timer */
if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
}
\Fedora\Autoloader\Autoload::addClassMap(
[
'sebastianbergmann\timer\duration' => '/Duration.php',
'sebastianbergmann\timer\exception' => '/exceptions/Exception.php',
'sebastianbergmann\timer\noactivetimerexception' => '/exceptions/NoActiveTimerException.php',
'sebastianbergmann\timer\resourceusageformatter' => '/ResourceUsageFormatter.php',
'sebastianbergmann\timer\timer' => '/Timer.php',
'sebastianbergmann\timer\timesincestartofrequestnotavailableexception' => '/exceptions/TimeSinceStartOfRequestNotAvailableException.php',
],
__DIR__
);