您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  1. <?php
  2. use app\ExceptionHandle;
  3. use app\Request;
  4. use app\Route;
  5. // 容器Provider定义文件
  6. return [
  7. 'think\Request' => Request::class,
  8. 'think\Route' => Route::class,
  9. 'think\exception\Handle' => ExceptionHandle::class,
  10. ];