mirror of
http://124.126.16.154:8888/singularity/hyperf-saml.git
synced 2026-01-15 07:35:07 +08:00
18 lines
383 B
PHP
18 lines
383 B
PHP
<?php
|
|
/**
|
|
* saml_error.php@HyperfSaml
|
|
*
|
|
* @author 李东云<dongyun.li@luxcreo.cn>
|
|
* Powered by PhpStorm
|
|
* Created on 2022/4/25
|
|
*/
|
|
|
|
return [
|
|
'default' => 'SAML 检验失败',
|
|
'params' => [
|
|
'default' => 'SAML 参数校验失败',
|
|
'saml_request' => 'SAMLRequest 参数不能为空',
|
|
'saml_response' => 'SAMLResponse 参数不能为空',
|
|
],
|
|
];
|