選択できるのは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. ];