File: //usr/share/php/Symfony/Component/OptionsResolver/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(
'symfony\\component\\optionsresolver\\debug\\optionsresolverintrospector' => '/Debug/OptionsResolverIntrospector.php',
'symfony\\component\\optionsresolver\\exception\\accessexception' => '/Exception/AccessException.php',
'symfony\\component\\optionsresolver\\exception\\exceptioninterface' => '/Exception/ExceptionInterface.php',
'symfony\\component\\optionsresolver\\exception\\invalidargumentexception' => '/Exception/InvalidArgumentException.php',
'symfony\\component\\optionsresolver\\exception\\invalidoptionsexception' => '/Exception/InvalidOptionsException.php',
'symfony\\component\\optionsresolver\\exception\\missingoptionsexception' => '/Exception/MissingOptionsException.php',
'symfony\\component\\optionsresolver\\exception\\noconfigurationexception' => '/Exception/NoConfigurationException.php',
'symfony\\component\\optionsresolver\\exception\\nosuchoptionexception' => '/Exception/NoSuchOptionException.php',
'symfony\\component\\optionsresolver\\exception\\optiondefinitionexception' => '/Exception/OptionDefinitionException.php',
'symfony\\component\\optionsresolver\\exception\\undefinedoptionsexception' => '/Exception/UndefinedOptionsException.php',
'symfony\\component\\optionsresolver\\options' => '/Options.php',
'symfony\\component\\optionsresolver\\optionsresolver' => '/OptionsResolver.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
}
);
// @codeCoverageIgnoreEnd