This file is indexed.

/usr/share/php/phpDocumentor/Reflection/DocBlock/autoload.php is in php-phpdocumentor-reflection-docblock 4.2.0-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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php

// require_once 'phpDocumentor/Reflection/Common/autoload.php'; Already required by Type
require_once 'phpDocumentor/Reflection/Types/autoload.php';
require_once 'Webmozart/Assert/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\\docblock' => '/../DocBlock.php',
                'phpdocumentor\\reflection\\docblock\\description' => '/Description.php',
                'phpdocumentor\\reflection\\docblock\\descriptionfactory' => '/DescriptionFactory.php',
                'phpdocumentor\\reflection\\docblock\\examplefinder' => '/ExampleFinder.php',
                'phpdocumentor\\reflection\\docblock\\serializer' => '/Serializer.php',
                'phpdocumentor\\reflection\\docblock\\standardtagfactory' => '/StandardTagFactory.php',
                'phpdocumentor\\reflection\\docblock\\tag' => '/Tag.php',
                'phpdocumentor\\reflection\\docblock\\tagfactory' => '/TagFactory.php',
                'phpdocumentor\\reflection\\docblock\\tags\\author' => '/Tags/Author.php',
                'phpdocumentor\\reflection\\docblock\\tags\\basetag' => '/Tags/BaseTag.php',
                'phpdocumentor\\reflection\\docblock\\tags\\covers' => '/Tags/Covers.php',
                'phpdocumentor\\reflection\\docblock\\tags\\deprecated' => '/Tags/Deprecated.php',
                'phpdocumentor\\reflection\\docblock\\tags\\example' => '/Tags/Example.php',
                'phpdocumentor\\reflection\\docblock\\tags\\factory\\staticmethod' => '/Tags/Factory/StaticMethod.php',
                'phpdocumentor\\reflection\\docblock\\tags\\factory\\strategy' => '/Tags/Factory/Strategy.php',
                'phpdocumentor\\reflection\\docblock\\tags\\formatter' => '/Tags/Formatter.php',
                'phpdocumentor\\reflection\\docblock\\tags\\formatter\\alignformatter' => '/Tags/Formatter/AlignFormatter.php',
                'phpdocumentor\\reflection\\docblock\\tags\\formatter\\passthroughformatter' => '/Tags/Formatter/PassthroughFormatter.php',
                'phpdocumentor\\reflection\\docblock\\tags\\generic' => '/Tags/Generic.php',
                'phpdocumentor\\reflection\\docblock\\tags\\link' => '/Tags/Link.php',
                'phpdocumentor\\reflection\\docblock\\tags\\method' => '/Tags/Method.php',
                'phpdocumentor\\reflection\\docblock\\tags\\param' => '/Tags/Param.php',
                'phpdocumentor\\reflection\\docblock\\tags\\property' => '/Tags/Property.php',
                'phpdocumentor\\reflection\\docblock\\tags\\propertyread' => '/Tags/PropertyRead.php',
                'phpdocumentor\\reflection\\docblock\\tags\\propertywrite' => '/Tags/PropertyWrite.php',
                'phpdocumentor\\reflection\\docblock\\tags\\reference\\fqsen' => '/Tags/Reference/Fqsen.php',
                'phpdocumentor\\reflection\\docblock\\tags\\reference\\reference' => '/Tags/Reference/Reference.php',
                'phpdocumentor\\reflection\\docblock\\tags\\reference\\url' => '/Tags/Reference/Url.php',
                'phpdocumentor\\reflection\\docblock\\tags\\return_' => '/Tags/Return_.php',
                'phpdocumentor\\reflection\\docblock\\tags\\see' => '/Tags/See.php',
                'phpdocumentor\\reflection\\docblock\\tags\\since' => '/Tags/Since.php',
                'phpdocumentor\\reflection\\docblock\\tags\\source' => '/Tags/Source.php',
                'phpdocumentor\\reflection\\docblock\\tags\\throws' => '/Tags/Throws.php',
                'phpdocumentor\\reflection\\docblock\\tags\\uses' => '/Tags/Uses.php',
                'phpdocumentor\\reflection\\docblock\\tags\\var_' => '/Tags/Var_.php',
                'phpdocumentor\\reflection\\docblock\\tags\\version' => '/Tags/Version.php',
                'phpdocumentor\\reflection\\docblockfactory' => '/../DocBlockFactory.php',
                'phpdocumentor\\reflection\\docblockfactoryinterface' => '/../DocBlockFactoryInterface.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd