This file is indexed.

/usr/share/php/SuperClosure/autoload.php is in php-superclosure 2.2.0-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
<?php

require_once 'PhpParser/bootstrap.php';

// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                'superclosure\\analyzer\\astanalyzer' => '/Analyzer/AstAnalyzer.php',
                'superclosure\\analyzer\\closureanalyzer' => '/Analyzer/ClosureAnalyzer.php',
                'superclosure\\analyzer\\token' => '/Analyzer/Token.php',
                'superclosure\\analyzer\\tokenanalyzer' => '/Analyzer/TokenAnalyzer.php',
                'superclosure\\analyzer\\visitor\\closurelocatorvisitor' => '/Analyzer/Visitor/ClosureLocatorVisitor.php',
                'superclosure\\analyzer\\visitor\\magicconstantvisitor' => '/Analyzer/Visitor/MagicConstantVisitor.php',
                'superclosure\\analyzer\\visitor\\thisdetectorvisitor' => '/Analyzer/Visitor/ThisDetectorVisitor.php',
                'superclosure\\exception\\closureanalysisexception' => '/Exception/ClosureAnalysisException.php',
                'superclosure\\exception\\closureunserializationexception' => '/Exception/ClosureUnserializationException.php',
                'superclosure\\exception\\superclosureexception' => '/Exception/SuperClosureException.php',
                'superclosure\\serializableclosure' => '/SerializableClosure.php',
                'superclosure\\serializer' => '/Serializer.php',
                'superclosure\\serializerinterface' => '/SerializerInterface.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd