This file is indexed.

/usr/share/php/phpDocumentor/Reflection/DocBlock/autoload.php is in php-phpdocumentor-reflection-docblock 2.0.4-2.

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
<?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\\docblock' => '/../DocBlock.php',
                'phpdocumentor\\reflection\\docblock\\context' => '/Context.php',
                'phpdocumentor\\reflection\\docblock\\description' => '/Description.php',
                'phpdocumentor\\reflection\\docblock\\location' => '/Location.php',
                'phpdocumentor\\reflection\\docblock\\serializer' => '/Serializer.php',
                'phpdocumentor\\reflection\\docblock\\tag' => '/Tag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\authortag' => '/Tag/AuthorTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\coverstag' => '/Tag/CoversTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\deprecatedtag' => '/Tag/DeprecatedTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\exampletag' => '/Tag/ExampleTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\linktag' => '/Tag/LinkTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\methodtag' => '/Tag/MethodTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\paramtag' => '/Tag/ParamTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\propertyreadtag' => '/Tag/PropertyReadTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\propertytag' => '/Tag/PropertyTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\propertywritetag' => '/Tag/PropertyWriteTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\returntag' => '/Tag/ReturnTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\seetag' => '/Tag/SeeTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\sincetag' => '/Tag/SinceTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\sourcetag' => '/Tag/SourceTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\throwstag' => '/Tag/ThrowsTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\usestag' => '/Tag/UsesTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\vartag' => '/Tag/VarTag.php',
                'phpdocumentor\\reflection\\docblock\\tag\\versiontag' => '/Tag/VersionTag.php',
                'phpdocumentor\\reflection\\docblock\\type\\collection' => '/Type/Collection.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd