mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
14 lines
283 B
PHP
14 lines
283 B
PHP
<?php
|
|
|
|
// 容器Provider定义文件
|
|
|
|
use app\common\provider\ExceptionHandle;
|
|
use app\common\provider\Request;
|
|
use app\common\provider\View;
|
|
|
|
return [
|
|
'think\Request' => Request::class,
|
|
'think\exception\Handle' => ExceptionHandle::class,
|
|
'think\View' => View::class,
|
|
];
|