provider.php 296 B

12345678910
  1. <?php
  2. use app\ExceptionHandle;
  3. use app\Request;
  4. // 容器Provider定义文件
  5. return [
  6. 'think\Request' => Request::class,
  7. 'think\exception\Handle' => ExceptionHandle::class,
  8. 'think\Paginator' => '\app\common\paginator\Bootstrap', //修改为分页类所在目录
  9. ];