This file is indexed.

/usr/share/php/Symfony/Bundle/WebProfilerBundle/autoload.php is in php-symfony-web-profiler-bundle 2.7.10-0ubuntu2.

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

require_once 'Symfony/Component/HttpKernel/autoload.php';
require_once 'Symfony/Component/Routing/autoload.php';
require_once 'Symfony/Bridge/Twig/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(
                'symfony\\bundle\\webprofilerbundle\\command\\exportcommand' => '/Command/ExportCommand.php',
                'symfony\\bundle\\webprofilerbundle\\command\\importcommand' => '/Command/ImportCommand.php',
                'symfony\\bundle\\webprofilerbundle\\controller\\exceptioncontroller' => '/Controller/ExceptionController.php',
                'symfony\\bundle\\webprofilerbundle\\controller\\profilercontroller' => '/Controller/ProfilerController.php',
                'symfony\\bundle\\webprofilerbundle\\controller\\routercontroller' => '/Controller/RouterController.php',
                'symfony\\bundle\\webprofilerbundle\\dependencyinjection\\configuration' => '/DependencyInjection/Configuration.php',
                'symfony\\bundle\\webprofilerbundle\\dependencyinjection\\webprofilerextension' => '/DependencyInjection/WebProfilerExtension.php',
                'symfony\\bundle\\webprofilerbundle\\eventlistener\\webdebugtoolbarlistener' => '/EventListener/WebDebugToolbarListener.php',
                'symfony\\bundle\\webprofilerbundle\\profiler\\templatemanager' => '/Profiler/TemplateManager.php',
                'symfony\\bundle\\webprofilerbundle\\tests\\command\\exportcommandtest' => '/Tests/Command/ExportCommandTest.php',
                'symfony\\bundle\\webprofilerbundle\\tests\\command\\importcommandtest' => '/Tests/Command/ImportCommandTest.php',
                'symfony\\bundle\\webprofilerbundle\\tests\\controller\\profilercontrollertest' => '/Tests/Controller/ProfilerControllerTest.php',
                'symfony\\bundle\\webprofilerbundle\\tests\\dependencyinjection\\configurationtest' => '/Tests/DependencyInjection/ConfigurationTest.php',
                'symfony\\bundle\\webprofilerbundle\\tests\\dependencyinjection\\webprofilerextensiontest' => '/Tests/DependencyInjection/WebProfilerExtensionTest.php',
                'symfony\\bundle\\webprofilerbundle\\tests\\eventlistener\\webdebugtoolbarlistenertest' => '/Tests/EventListener/WebDebugToolbarListenerTest.php',
                'symfony\\bundle\\webprofilerbundle\\tests\\profiler\\templatemanagertest' => '/Tests/Profiler/TemplateManagerTest.php',
                'symfony\\bundle\\webprofilerbundle\\tests\\testcase' => '/Tests/TestCase.php',
                'symfony\\bundle\\webprofilerbundle\\twig\\webprofilerextension' => '/Twig/WebProfilerExtension.php',
                'symfony\\bundle\\webprofilerbundle\\webprofilerbundle' => '/WebProfilerBundle.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd