-
Notifications
You must be signed in to change notification settings - Fork 1
/
autoload.php
45 lines (39 loc) · 880 Bytes
/
autoload.php
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
<?php
/*
* This file is part of the Shieldon package.
*
* (c) Terry L. <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
/**
* Register to PSR-4 autoloader.
*
* @return void
*/
function psr_http_register()
{
spl_autoload_register('psr_http_autoload', true, false);
}
/**
* PSR-4 autoloader.
*
* @param string $className
*
* @return void
*/
function psr_http_autoload($className)
{
$prefix = 'Shieldon\\';
$dir = __DIR__ . '/src';
if (0 === strpos($className, $prefix . 'Psr')) {
$parts = explode('\\', substr($className, strlen($prefix)));
$filepath = $dir . '/' . implode('/', $parts) . '.php';
if (is_file($filepath)) {
require $filepath;
}
}
}
psr_http_register();