File: //usr/share/php/Symfony/Contracts/EventDispatcher/autoload.php
<?php
if (stream_resolve_include_path('Psr/EventDispatcher/autoload.php')){
include_once 'Psr/EventDispatcher/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/EventDispatcher/autoload.php')){
include_once 'Symfony/Component/EventDispatcher/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\\contracts\\eventdispatcher\\event' => '/Event.php',
'symfony\\contracts\\eventdispatcher\\eventdispatcherinterface' => '/EventDispatcherInterface.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd