provider.php 279 B

12345678910
  1. <?php
  2. // 容器Provider定义文件
  3. return [
  4. 'think\Request' => \app\Request::class,
  5. 'think\exception\Handle' => ExceptionHandle::class,
  6. // 绑定自定义异常处理handle类
  7. // 'think\exception\Handle' => \app\exception\BaseExceptionHandle::class,
  8. ];