29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
<?php
|
||
/**
|
||
* MineAdmin is committed to providing solutions for quickly building web applications
|
||
* Please view the LICENSE file that was distributed with this source code,
|
||
* For the full copyright and license information.
|
||
* Thank you very much for using MineAdmin.
|
||
*
|
||
* @Author X.Mo<root@imoi.cn>
|
||
* @Link https://gitee.com/xmo/MineAdmin
|
||
*/
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
'response_success' => '请求成功',
|
||
'response_error' => '请求失败',
|
||
'data_no_change' => '数据没有任何改变',
|
||
'not_found' => '您访问的资源不存在',
|
||
'not_allow_method' => '不允许 [:method] 方式访问资源',
|
||
'allow_method' => '只允许 [:method] 方式访问资源',
|
||
'network_image_save_fail' => '网络图片保存失败',
|
||
'redis_lock_error' => 'Redis锁错误,请重试',
|
||
'resubmit' => '访问太频繁,请稍后访问',
|
||
'api_stop' => '接口已停用',
|
||
'access_denied' => '拒绝非法访问',
|
||
'interface_exception' => '接口异常',
|
||
'api_auth_exception' => '接口鉴权异常',
|
||
'api_auth_fail' => '接口鉴权失败',
|
||
]; |