This file is indexed.

/usr/share/php/phpDocumentor/Reflection/autoload.php is in php-phpdocumentor-reflection 1.0.7-1build1.

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
<?php

require_once 'Psr/Log/autoload.php';
require_once 'PhpParser/bootstrap.php'; // For version 1
// require_once 'PhpParser/autoload.php'; To be used with version 2
// require_once 'phpDocumentor/Reflection/Common/autoload.php'; Already required by DocBlock
require_once 'phpDocumentor/Reflection/DocBlock/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(
                'phpdocumentor\\reflection\\basereflector' => '/BaseReflector.php',
                'phpdocumentor\\reflection\\classreflector' => '/ClassReflector.php',
                'phpdocumentor\\reflection\\classreflector\\constantreflector' => '/ClassReflector/ConstantReflector.php',
                'phpdocumentor\\reflection\\classreflector\\methodreflector' => '/ClassReflector/MethodReflector.php',
                'phpdocumentor\\reflection\\classreflector\\propertyreflector' => '/ClassReflector/PropertyReflector.php',
                'phpdocumentor\\reflection\\constantreflector' => '/ConstantReflector.php',
                'phpdocumentor\\reflection\\event\\exportdocblocktagevent' => '/Event/ExportDocBlockTagEvent.php',
                'phpdocumentor\\reflection\\event\\postdocblockextractionevent' => '/Event/PostDocBlockExtractionEvent.php',
                'phpdocumentor\\reflection\\exception' => '/Exception.php',
                'phpdocumentor\\reflection\\exception\\unparsablefile' => '/Exception/UnparsableFile.php',
                'phpdocumentor\\reflection\\exception\\unreadablefile' => '/Exception/UnreadableFile.php',
                'phpdocumentor\\reflection\\filereflector' => '/FileReflector.php',
                'phpdocumentor\\reflection\\functionreflector' => '/FunctionReflector.php',
                'phpdocumentor\\reflection\\functionreflector\\argumentreflector' => '/FunctionReflector/ArgumentReflector.php',
                'phpdocumentor\\reflection\\includereflector' => '/IncludeReflector.php',
                'phpdocumentor\\reflection\\interfacereflector' => '/InterfaceReflector.php',
                'phpdocumentor\\reflection\\lexer' => '/Lexer.php',
                'phpdocumentor\\reflection\\prettyprinter' => '/PrettyPrinter.php',
                'phpdocumentor\\reflection\\reflectionabstract' => '/ReflectionAbstract.php',
                'phpdocumentor\\reflection\\traitreflector' => '/TraitReflector.php',
                'phpdocumentor\\reflection\\traverser' => '/Traverser.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd