mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
10 lines
195 B
PHP
10 lines
195 B
PHP
<?php
|
|
use app\ExceptionHandle;
|
|
use app\Request;
|
|
|
|
// 容器Provider定义文件
|
|
return [
|
|
'think\Request' => Request::class,
|
|
'think\exception\Handle' => ExceptionHandle::class,
|
|
];
|