23 lines
503 B
PHP
23 lines
503 B
PHP
<?php
|
|
|
|
/**
|
|
* Global Configuration Override
|
|
*
|
|
* You can use this file for overriding configuration values from modules, etc.
|
|
* You would place values in here that are agnostic to the environment and not
|
|
* sensitive to security.
|
|
*
|
|
* @NOTE: In practice, this file will typically be INCLUDED in your source
|
|
* control, so do not include passwords or other sensitive information in this
|
|
* file.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'blind_method_menu' => [
|
|
'非盲信息' ,
|
|
],
|
|
|
|
];
|