File: //usr/share/php/Patchwork/Utf8/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(
'normalizer' => '/../../Normalizer.php',
'patchwork\\php\\shim\\iconv' => '/../PHP/Shim/Iconv.php',
'patchwork\\php\\shim\\intl' => '/../PHP/Shim/Intl.php',
'patchwork\\php\\shim\\mbstring' => '/../PHP/Shim/Mbstring.php',
'patchwork\\php\\shim\\normalizer' => '/../PHP/Shim/Normalizer.php',
'patchwork\\php\\shim\\xml' => '/../PHP/Shim/Xml.php',
'patchwork\\turkishutf8' => '/../TurkishUtf8.php',
'patchwork\\utf8' => '/../Utf8.php',
'patchwork\\utf8\\bestfit' => '/BestFit.php',
'patchwork\\utf8\\bootup' => '/Bootup.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd