File: //usr/share/php/Symfony/Component/PropertyAccess/autoload.php
<?php
// require:
require_once 'Symfony/Component/Inflector/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\\propertyaccess\\exception\\accessexception' => '/Exception/AccessException.php',
'symfony\\component\\propertyaccess\\exception\\exceptioninterface' => '/Exception/ExceptionInterface.php',
'symfony\\component\\propertyaccess\\exception\\invalidargumentexception' => '/Exception/InvalidArgumentException.php',
'symfony\\component\\propertyaccess\\exception\\invalidpropertypathexception' => '/Exception/InvalidPropertyPathException.php',
'symfony\\component\\propertyaccess\\exception\\nosuchindexexception' => '/Exception/NoSuchIndexException.php',
'symfony\\component\\propertyaccess\\exception\\nosuchpropertyexception' => '/Exception/NoSuchPropertyException.php',
'symfony\\component\\propertyaccess\\exception\\outofboundsexception' => '/Exception/OutOfBoundsException.php',
'symfony\\component\\propertyaccess\\exception\\runtimeexception' => '/Exception/RuntimeException.php',
'symfony\\component\\propertyaccess\\exception\\unexpectedtypeexception' => '/Exception/UnexpectedTypeException.php',
'symfony\\component\\propertyaccess\\propertyaccess' => '/PropertyAccess.php',
'symfony\\component\\propertyaccess\\propertyaccessor' => '/PropertyAccessor.php',
'symfony\\component\\propertyaccess\\propertyaccessorbuilder' => '/PropertyAccessorBuilder.php',
'symfony\\component\\propertyaccess\\propertyaccessorinterface' => '/PropertyAccessorInterface.php',
'symfony\\component\\propertyaccess\\propertypath' => '/PropertyPath.php',
'symfony\\component\\propertyaccess\\propertypathbuilder' => '/PropertyPathBuilder.php',
'symfony\\component\\propertyaccess\\propertypathinterface' => '/PropertyPathInterface.php',
'symfony\\component\\propertyaccess\\propertypathiterator' => '/PropertyPathIterator.php',
'symfony\\component\\propertyaccess\\propertypathiteratorinterface' => '/PropertyPathIteratorInterface.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd