@@ -10,9 +10,9 @@ |
||
10 | 10 | /** |
11 | 11 | * autoload |
12 | 12 | */ |
13 | -spl_autoload_register(function ($class) { |
|
13 | +spl_autoload_register(function($class) { |
|
14 | 14 | $file = realpath(__DIR__ . DIRECTORY_SEPARATOR . 'app') . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php'; |
15 | - if(file_exists($file)) { |
|
15 | + if (file_exists($file)) { |
|
16 | 16 | require_once($file); |
17 | 17 | } |
18 | 18 | }); |