File: //usr/share/php/SebastianBergmann/Timer/autoload.php
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'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'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd