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