File: //usr/share/php/Symfony/Component/Stopwatch/autoload.php
<?php
// require:
require_once 'Symfony/Contracts/Service/autoload.php';
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'symfony\\component\\stopwatch\\section' => '/Section.php',
'symfony\\component\\stopwatch\\stopwatch' => '/Stopwatch.php',
'symfony\\component\\stopwatch\\stopwatchevent' => '/StopwatchEvent.php',
'symfony\\component\\stopwatch\\stopwatchperiod' => '/StopwatchPeriod.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd