File: //usr/share/php/Symfony/Contracts/Translation/autoload.php
<?php
if (stream_resolve_include_path('Symfony/Component/Translation/autoload.php')){
include_once 'Symfony/Component/Translation/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\\translation\\localeawareinterface' => '/LocaleAwareInterface.php',
'symfony\\contracts\\translation\\test\\translatortest' => '/Test/TranslatorTest.php',
'symfony\\contracts\\translation\\translatorinterface' => '/TranslatorInterface.php',
'symfony\\contracts\\translation\\translatortrait' => '/TranslatorTrait.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd