-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathautoload.php
More file actions
22 lines (22 loc) · 877 Bytes
/
autoload.php
File metadata and controls
22 lines (22 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
function autoload303922ad6a25fedb016bdec114d170d6($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'presshub\\client' => '/src/Presshub/Client.php',
'presshub\\template' => '/src/Presshub/Template.php',
'presshub\\template\\base' => '/src/Presshub/Template/Base.php',
'presshub\\template\\component' => '/src/Presshub/Template/Component.php',
'presshub\\template\\componentbase' => '/src/Presshub/Template/ComponentBase.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require dirname(__FILE__) . $classes[$cn];
}
}
spl_autoload_register('autoload303922ad6a25fedb016bdec114d170d6', true);
// @codeCoverageIgnoreEnd