This file is indexed.

/usr/share/php/Symfony/Component/Yaml/autoload.php is in php-symfony-yaml 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
<?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\\component\\yaml\\dumper' => '/Dumper.php',
                'symfony\\component\\yaml\\escaper' => '/Escaper.php',
                'symfony\\component\\yaml\\exception\\dumpexception' => '/Exception/DumpException.php',
                'symfony\\component\\yaml\\exception\\exceptioninterface' => '/Exception/ExceptionInterface.php',
                'symfony\\component\\yaml\\exception\\parseexception' => '/Exception/ParseException.php',
                'symfony\\component\\yaml\\exception\\runtimeexception' => '/Exception/RuntimeException.php',
                'symfony\\component\\yaml\\inline' => '/Inline.php',
                'symfony\\component\\yaml\\parser' => '/Parser.php',
                'symfony\\component\\yaml\\tests\\a' => '/Tests/DumperTest.php',
                'symfony\\component\\yaml\\tests\\b' => '/Tests/ParserTest.php',
                'symfony\\component\\yaml\\tests\\dumpertest' => '/Tests/DumperTest.php',
                'symfony\\component\\yaml\\tests\\inlinetest' => '/Tests/InlineTest.php',
                'symfony\\component\\yaml\\tests\\parseexceptiontest' => '/Tests/ParseExceptionTest.php',
                'symfony\\component\\yaml\\tests\\parsertest' => '/Tests/ParserTest.php',
                'symfony\\component\\yaml\\tests\\yamltest' => '/Tests/YamlTest.php',
                'symfony\\component\\yaml\\unescaper' => '/Unescaper.php',
                'symfony\\component\\yaml\\yaml' => '/Yaml.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd