29 lines
1.2 KiB
PHP
29 lines
1.2 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' => 'request success',
|
|
'response_error' => 'request fail',
|
|
'data_no_change' => 'There has been no change in the data',
|
|
'not_found' => 'The resource you are accessing does not exist',
|
|
'not_allow_method' => 'Access to resources in [:method] is not allowed',
|
|
'allow_method' => 'Only allowed [:method] access to resources',
|
|
'network_image_save_fail' => 'Network picture saving failed',
|
|
'redis_lock_error' => 'Redis lock error, please try again',
|
|
'resubmit' => 'Access is too frequent, please visit later',
|
|
'api_stop' => 'The interface has been deactivated',
|
|
'access_denied' => 'Illegal access is denied',
|
|
'interface_exception' => 'Interface exception',
|
|
'api_auth_exception' => 'Interface authentication exception',
|
|
'api_auth_fail' => 'Interface authentication failed',
|
|
]; |