buildadmin/app/provider.php

11 lines
196 B
PHP
Raw Normal View History

<?php
2022-08-23 15:01:30 +00:00
use app\ExceptionHandle;
use app\Request;
// 容器Provider定义文件
return [
'think\Request' => Request::class,
'think\exception\Handle' => ExceptionHandle::class,
];