mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-05 19:41:43 +08:00
modified 完善规则验证
This commit is contained in:
parent
b54c0b002a
commit
6d99c4959c
@ -35,7 +35,7 @@ class RequestFilter {
|
||||
}
|
||||
|
||||
if ($newRule) {
|
||||
$validate = Validate::make($newRule);
|
||||
$validate = Validate::rule($newRule);
|
||||
if (!$validate->check($data)) {
|
||||
return json(['code' => ReturnCode::PARAM_INVALID, 'msg' => $validate->getError(), 'data' => []]);
|
||||
}
|
||||
@ -50,7 +50,7 @@ class RequestFilter {
|
||||
* @return array
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function buildValidateRule($rule = array()) {
|
||||
public function buildValidateRule($rule = []) {
|
||||
$newRule = [];
|
||||
if ($rule) {
|
||||
foreach ($rule as $value) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user