provider.php 270 B

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