/usr/share/php/FSHL/autoload.php is in php-fshl 2.1.0-2build1.
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 | <?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'fshl\\generator' => '/FSHL-2.1.0/FSHL/Generator.php',
'fshl\\highlighter' => '/FSHL-2.1.0/FSHL/Highlighter.php',
'fshl\\lexer' => '/FSHL-2.1.0/FSHL/Lexer.php',
'fshl\\lexer\\cache\\cpp' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Cpp.php',
'fshl\\lexer\\cache\\css' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Css.php',
'fshl\\lexer\\cache\\html' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Html.php',
'fshl\\lexer\\cache\\htmlonly' => '/FSHL-2.1.0/FSHL/Lexer/Cache/HtmlOnly.php',
'fshl\\lexer\\cache\\java' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Java.php',
'fshl\\lexer\\cache\\javascript' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Javascript.php',
'fshl\\lexer\\cache\\minimal' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Minimal.php',
'fshl\\lexer\\cache\\php' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Php.php',
'fshl\\lexer\\cache\\python' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Python.php',
'fshl\\lexer\\cache\\sql' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Sql.php',
'fshl\\lexer\\cache\\texy' => '/FSHL-2.1.0/FSHL/Lexer/Cache/Texy.php',
'fshl\\lexer\\cpp' => '/FSHL-2.1.0/FSHL/Lexer/Cpp.php',
'fshl\\lexer\\css' => '/FSHL-2.1.0/FSHL/Lexer/Css.php',
'fshl\\lexer\\html' => '/FSHL-2.1.0/FSHL/Lexer/Html.php',
'fshl\\lexer\\htmlonly' => '/FSHL-2.1.0/FSHL/Lexer/HtmlOnly.php',
'fshl\\lexer\\java' => '/FSHL-2.1.0/FSHL/Lexer/Java.php',
'fshl\\lexer\\javascript' => '/FSHL-2.1.0/FSHL/Lexer/Javascript.php',
'fshl\\lexer\\minimal' => '/FSHL-2.1.0/FSHL/Lexer/Minimal.php',
'fshl\\lexer\\php' => '/FSHL-2.1.0/FSHL/Lexer/Php.php',
'fshl\\lexer\\python' => '/FSHL-2.1.0/FSHL/Lexer/Python.php',
'fshl\\lexer\\sql' => '/FSHL-2.1.0/FSHL/Lexer/Sql.php',
'fshl\\lexer\\texy' => '/FSHL-2.1.0/FSHL/Lexer/Texy.php',
'fshl\\output' => '/FSHL-2.1.0/FSHL/Output.php',
'fshl\\output\\html' => '/FSHL-2.1.0/FSHL/Output/Html.php',
'fshl\\output\\htmlmanual' => '/FSHL-2.1.0/FSHL/Output/HtmlManual.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd
|