mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-08 07:32:48 +08:00
改进一处警告错误
This commit is contained in:
@@ -1177,7 +1177,7 @@ class Model
|
|||||||
protected function checkValidate($value, $val, &$data)
|
protected function checkValidate($value, $val, &$data)
|
||||||
{
|
{
|
||||||
$rule = $val[0];
|
$rule = $val[0];
|
||||||
$msg = $val[1];
|
$msg = isset($val[1]) ? $val[1] : '';
|
||||||
$type = isset($val[2]) ? $val[2] : 'regex';
|
$type = isset($val[2]) ? $val[2] : 'regex';
|
||||||
$options = isset($val[3]) ? $val[3] : [];
|
$options = isset($val[3]) ? $val[3] : [];
|
||||||
if ($rule instanceof \Closure) {
|
if ($rule instanceof \Closure) {
|
||||||
|
|||||||
Reference in New Issue
Block a user