/usr/share/php/TokenReflection/autoload.php is in php-tokenreflection 1.4.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | <?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'tokenreflection\\broker' => '/Broker.php',
'tokenreflection\\broker\\backend' => '/Broker/Backend.php',
'tokenreflection\\broker\\backend\\memory' => '/Broker/Backend/Memory.php',
'tokenreflection\\dummy\\reflectionclass' => '/Dummy/ReflectionClass.php',
'tokenreflection\\exception\\baseexception' => '/Exception/BaseException.php',
'tokenreflection\\exception\\brokerexception' => '/Exception/BrokerException.php',
'tokenreflection\\exception\\fileprocessingexception' => '/Exception/FileProcessingException.php',
'tokenreflection\\exception\\parseexception' => '/Exception/ParseException.php',
'tokenreflection\\exception\\runtimeexception' => '/Exception/RuntimeException.php',
'tokenreflection\\exception\\streamexception' => '/Exception/StreamException.php',
'tokenreflection\\invalid\\reflectionclass' => '/Invalid/ReflectionClass.php',
'tokenreflection\\invalid\\reflectionconstant' => '/Invalid/ReflectionConstant.php',
'tokenreflection\\invalid\\reflectionelement' => '/Invalid/ReflectionElement.php',
'tokenreflection\\invalid\\reflectionfunction' => '/Invalid/ReflectionFunction.php',
'tokenreflection\\ireflection' => '/IReflection.php',
'tokenreflection\\ireflectionclass' => '/IReflectionClass.php',
'tokenreflection\\ireflectionconstant' => '/IReflectionConstant.php',
'tokenreflection\\ireflectionextension' => '/IReflectionExtension.php',
'tokenreflection\\ireflectionfunction' => '/IReflectionFunction.php',
'tokenreflection\\ireflectionfunctionbase' => '/IReflectionFunctionBase.php',
'tokenreflection\\ireflectionmethod' => '/IReflectionMethod.php',
'tokenreflection\\ireflectionnamespace' => '/IReflectionNamespace.php',
'tokenreflection\\ireflectionparameter' => '/IReflectionParameter.php',
'tokenreflection\\ireflectionproperty' => '/IReflectionProperty.php',
'tokenreflection\\php\\ireflection' => '/Php/IReflection.php',
'tokenreflection\\php\\reflectionclass' => '/Php/ReflectionClass.php',
'tokenreflection\\php\\reflectionconstant' => '/Php/ReflectionConstant.php',
'tokenreflection\\php\\reflectionextension' => '/Php/ReflectionExtension.php',
'tokenreflection\\php\\reflectionfunction' => '/Php/ReflectionFunction.php',
'tokenreflection\\php\\reflectionmethod' => '/Php/ReflectionMethod.php',
'tokenreflection\\php\\reflectionparameter' => '/Php/ReflectionParameter.php',
'tokenreflection\\php\\reflectionproperty' => '/Php/ReflectionProperty.php',
'tokenreflection\\reflectionannotation' => '/ReflectionAnnotation.php',
'tokenreflection\\reflectionbase' => '/ReflectionBase.php',
'tokenreflection\\reflectionclass' => '/ReflectionClass.php',
'tokenreflection\\reflectionconstant' => '/ReflectionConstant.php',
'tokenreflection\\reflectionelement' => '/ReflectionElement.php',
'tokenreflection\\reflectionfile' => '/ReflectionFile.php',
'tokenreflection\\reflectionfilenamespace' => '/ReflectionFileNamespace.php',
'tokenreflection\\reflectionfunction' => '/ReflectionFunction.php',
'tokenreflection\\reflectionfunctionbase' => '/ReflectionFunctionBase.php',
'tokenreflection\\reflectionmethod' => '/ReflectionMethod.php',
'tokenreflection\\reflectionnamespace' => '/ReflectionNamespace.php',
'tokenreflection\\reflectionparameter' => '/ReflectionParameter.php',
'tokenreflection\\reflectionproperty' => '/ReflectionProperty.php',
'tokenreflection\\resolver' => '/Resolver.php',
'tokenreflection\\stream\\filestream' => '/Stream/FileStream.php',
'tokenreflection\\stream\\streambase' => '/Stream/StreamBase.php',
'tokenreflection\\stream\\stringstream' => '/Stream/StringStream.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd
|