This file is indexed.

/usr/share/php/Kit/PathJoin/autoload.php is in php-kit-pathjoin 1.1.2-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
<?php

// Autoloader for loading the library when composer is not available
spl_autoload_register(function ($class) {
    if (strncmp($class, $ns = 'Riimu\\Kit\\PathJoin\\', strlen($ns)) === 0) {
        $file = substr_replace($class, '\\', 0, strlen($ns)) . '.php';
        $path = __DIR__ . str_replace('\\', DIRECTORY_SEPARATOR, $file);
        if (file_exists($path)) {
            require $path;
        }
    }
});