You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. ];