File: //usr/share/php/SebastianBergmann/Git/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(
'sebastianbergmann\\git\\exception' => '/Exception/Exception.php',
'sebastianbergmann\\git\\git' => '/Git.php',
'sebastianbergmann\\git\\runtimeexception' => '/Exception/RuntimeException.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd