This file is indexed.

/usr/share/php/Smalot/PdfParser/autoload.php is in php-pdfparser 0.9.25+dfsg-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
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
64
65
66
67
68
69
70
71
72
<?php

// TODO: replace by '/usr/share/php/tcpdf/autoload.php' once #780039 is fixed
require_once '/usr/share/php/tcpdf/tcpdf_parser.php';

// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                'smalot\\pdfparser\\document' => '/Document.php',
                'smalot\\pdfparser\\element' => '/Element.php',
                'smalot\\pdfparser\\element\\elementarray' => '/Element/ElementArray.php',
                'smalot\\pdfparser\\element\\elementboolean' => '/Element/ElementBoolean.php',
                'smalot\\pdfparser\\element\\elementdate' => '/Element/ElementDate.php',
                'smalot\\pdfparser\\element\\elementhexa' => '/Element/ElementHexa.php',
                'smalot\\pdfparser\\element\\elementmissing' => '/Element/ElementMissing.php',
                'smalot\\pdfparser\\element\\elementname' => '/Element/ElementName.php',
                'smalot\\pdfparser\\element\\elementnull' => '/Element/ElementNull.php',
                'smalot\\pdfparser\\element\\elementnumeric' => '/Element/ElementNumeric.php',
                'smalot\\pdfparser\\element\\elementstring' => '/Element/ElementString.php',
                'smalot\\pdfparser\\element\\elementstruct' => '/Element/ElementStruct.php',
                'smalot\\pdfparser\\element\\elementxref' => '/Element/ElementXRef.php',
                'smalot\\pdfparser\\encoding' => '/Encoding.php',
                'smalot\\pdfparser\\encoding\\isolatin1encoding' => '/Encoding/ISOLatin1Encoding.php',
                'smalot\\pdfparser\\encoding\\isolatin9encoding' => '/Encoding/ISOLatin9Encoding.php',
                'smalot\\pdfparser\\encoding\\macromanencoding' => '/Encoding/MacRomanEncoding.php',
                'smalot\\pdfparser\\encoding\\standardencoding' => '/Encoding/StandardEncoding.php',
                'smalot\\pdfparser\\encoding\\winansiencoding' => '/Encoding/WinAnsiEncoding.php',
                'smalot\\pdfparser\\font' => '/Font.php',
                'smalot\\pdfparser\\font\\fontcidfonttype0' => '/Font/FontCIDFontType0.php',
                'smalot\\pdfparser\\font\\fontcidfonttype2' => '/Font/FontCIDFontType2.php',
                'smalot\\pdfparser\\font\\fonttruetype' => '/Font/FontTrueType.php',
                'smalot\\pdfparser\\font\\fonttype0' => '/Font/FontType0.php',
                'smalot\\pdfparser\\font\\fonttype1' => '/Font/FontType1.php',
                'smalot\\pdfparser\\header' => '/Header.php',
                'smalot\\pdfparser\\object' => '/Object.php',
                'smalot\\pdfparser\\page' => '/Page.php',
                'smalot\\pdfparser\\pages' => '/Pages.php',
                'smalot\\pdfparser\\parser' => '/Parser.php',
                'smalot\\pdfparser\\tests\\units\\document' => '/Tests/Units/Document.php',
                'smalot\\pdfparser\\tests\\units\\element' => '/Tests/Units/Element.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementarray' => '/Tests/Units/Element/ElementArray.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementboolean' => '/Tests/Units/Element/ElementBoolean.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementdate' => '/Tests/Units/Element/ElementDate.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementhexa' => '/Tests/Units/Element/ElementHexa.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementmissing' => '/Tests/Units/Element/ElementMissing.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementname' => '/Tests/Units/Element/ElementName.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementnull' => '/Tests/Units/Element/ElementNull.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementnumeric' => '/Tests/Units/Element/ElementNumeric.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementstring' => '/Tests/Units/Element/ElementString.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementstruct' => '/Tests/Units/Element/ElementStruct.php',
                'smalot\\pdfparser\\tests\\units\\element\\elementxref' => '/Tests/Units/Element/ElementXRef.php',
                'smalot\\pdfparser\\tests\\units\\font' => '/Tests/Units/Font.php',
                'smalot\\pdfparser\\tests\\units\\header' => '/Tests/Units/Header.php',
                'smalot\\pdfparser\\tests\\units\\object' => '/Tests/Units/Object.php',
                'smalot\\pdfparser\\tests\\units\\page' => '/Tests/Units/Page.php',
                'smalot\\pdfparser\\tests\\units\\parser' => '/Tests/Units/Parser.php',
                'smalot\\pdfparser\\xobject\\form' => '/XObject/Form.php',
                'smalot\\pdfparser\\xobject\\image' => '/XObject/Image.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd