IYUUPlus/config/app.php
2023-08-12 17:35:28 +08:00

16 lines
498 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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,
];