1 | <?php |
||
23 | class Autoloader |
||
24 | { |
||
25 | /** @const string */ |
||
26 | const NAMESPACE_PREFIX = 'PhpOffice\\PhpProject\\'; |
||
27 | |||
28 | /** |
||
29 | * Register |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | 1 | public static function register() |
|
37 | |||
38 | /** |
||
39 | * Autoload |
||
40 | * |
||
41 | * @param string $class |
||
42 | */ |
||
43 | 3 | public static function autoload($class) |
|
56 | } |
||
57 |