File: //usr/share/php/Masterminds/HTML5/autoload.php
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'masterminds\\html5' => '/../HTML5.php',
'masterminds\\html5\\elements' => '/Elements.php',
'masterminds\\html5\\entities' => '/Entities.php',
'masterminds\\html5\\exception' => '/Exception.php',
'masterminds\\html5\\instructionprocessor' => '/InstructionProcessor.php',
'masterminds\\html5\\parser\\characterreference' => '/Parser/CharacterReference.php',
'masterminds\\html5\\parser\\domtreebuilder' => '/Parser/DOMTreeBuilder.php',
'masterminds\\html5\\parser\\eventhandler' => '/Parser/EventHandler.php',
'masterminds\\html5\\parser\\fileinputstream' => '/Parser/FileInputStream.php',
'masterminds\\html5\\parser\\inputstream' => '/Parser/InputStream.php',
'masterminds\\html5\\parser\\parseerror' => '/Parser/ParseError.php',
'masterminds\\html5\\parser\\scanner' => '/Parser/Scanner.php',
'masterminds\\html5\\parser\\stringinputstream' => '/Parser/StringInputStream.php',
'masterminds\\html5\\parser\\tokenizer' => '/Parser/Tokenizer.php',
'masterminds\\html5\\parser\\treebuildingrules' => '/Parser/TreeBuildingRules.php',
'masterminds\\html5\\parser\\utf8utils' => '/Parser/UTF8Utils.php',
'masterminds\\html5\\serializer\\html5entities' => '/Serializer/HTML5Entities.php',
'masterminds\\html5\\serializer\\outputrules' => '/Serializer/OutputRules.php',
'masterminds\\html5\\serializer\\rulesinterface' => '/Serializer/RulesInterface.php',
'masterminds\\html5\\serializer\\traverser' => '/Serializer/Traverser.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd