This file is indexed.

/usr/share/php/TheSeer/Autoload/templates/ci/php52.php.tpl is in phpab 1.24.1-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
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
function ___AUTOLOAD___($class) {
    static $classes = null;
    if ($classes === null) {
        $classes = array(
            ___CLASSLIST___
        );
    }
    $cn = strtolower($class);
    if (isset($classes[$cn])) {
        require ___BASEDIR___$classes[$cn];
    }
}
spl_autoload_register('___AUTOLOAD___', ___EXCEPTION___);
// @codeCoverageIgnoreEnd