This file is indexed.

/usr/share/php/TheSeer/Autoload/autoload.php is in phpab 1.16.0-1.

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
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                'theseer\\autoload\\application' => '/Application.php',
                'theseer\\autoload\\applicationexception' => '/Application.php',
                'theseer\\autoload\\autoloadbuilderexception' => '/AutoloadRenderer.php',
                'theseer\\autoload\\autoloadrenderer' => '/AutoloadRenderer.php',
                'theseer\\autoload\\cache' => '/Cache.php',
                'theseer\\autoload\\cacheentry' => '/CacheEntry.php',
                'theseer\\autoload\\cacheexception' => '/Cache.php',
                'theseer\\autoload\\cachingparser' => '/CachingParser.php',
                'theseer\\autoload\\classdependencysorter' => '/DependencySorter.php',
                'theseer\\autoload\\classdependencysorterexception' => '/DependencySorter.php',
                'theseer\\autoload\\cli' => '/CLI.php',
                'theseer\\autoload\\clienvironmentexception' => '/CLI.php',
                'theseer\\autoload\\collector' => '/Collector.php',
                'theseer\\autoload\\collectorexception' => '/Collector.php',
                'theseer\\autoload\\collectorresult' => '/CollectorResult.php',
                'theseer\\autoload\\collectorresultexception' => '/CollectorResult.php',
                'theseer\\autoload\\composeriterator' => '/ComposerIterator.php',
                'theseer\\autoload\\composeriteratorexception' => '/ComposerIterator.php',
                'theseer\\autoload\\config' => '/Config.php',
                'theseer\\autoload\\factory' => '/Factory.php',
                'theseer\\autoload\\logger' => '/Logger.php',
                'theseer\\autoload\\parser' => '/Parser.php',
                'theseer\\autoload\\parseresult' => '/ParseResult.php',
                'theseer\\autoload\\parserexception' => '/Parser.php',
                'theseer\\autoload\\parserinterface' => '/ParserInterface.php',
                'theseer\\autoload\\pharbuilder' => '/PharBuilder.php',
                'theseer\\autoload\\sourcefile' => '/SourceFile.php',
                'theseer\\autoload\\staticrenderer' => '/StaticRenderer.php',
                'theseer\\autoload\\version' => '/Version.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd