在config/app.php上加了spl_autoload_register 但是好像并没有什么用
```php
spl_autoload_register(function ($class) {
$filePath = '/' . str_replace('\\', '/', $class) . '.php';
if (file_exists(base_path(false) . $filePath)) {
require_once base_path(false) . $filePath;
}
});
```