mirror of
https://github.com/ledccn/IYUUPlus.git
synced 2025-04-28 07:43:15 +00:00
16 lines
498 B
PHP
16 lines
498 B
PHP
<?php
|
||
|
||
use support\Request;
|
||
|
||
return [
|
||
'debug' => env('APP_DEBUG', false),
|
||
'default_timezone' => 'Asia/Shanghai',
|
||
'error_reporting' => E_ALL,
|
||
'request_class' => Request::class,
|
||
'public_path' => base_path() . DIRECTORY_SEPARATOR . 'public',
|
||
'runtime_path' => base_path(false) . DIRECTORY_SEPARATOR . 'runtime',
|
||
'controller_suffix' => '',
|
||
//关闭控制器复用,每个请求都会触发对应控制器的__construct()构造函数
|
||
'controller_reuse' => false,
|
||
];
|