eee
This commit is contained in:
@@ -93,7 +93,7 @@ class BindForm implements InjectParameterInterface
|
|||||||
$validator->setAlias($property->getName(), $rule->field);
|
$validator->setAlias($property->getName(), $rule->field);
|
||||||
}
|
}
|
||||||
|
|
||||||
$validator->addRule($property->getName(), [$this->_typeValidator($property), 'dispatch', false]);
|
$validator->addRule($property->getName(), [[$this->_typeValidator($property), 'dispatch', false]]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -89,7 +89,11 @@ class Binding implements RequestFilterInterface
|
|||||||
*/
|
*/
|
||||||
protected function getValidator($key, $rule): array
|
protected function getValidator($key, $rule): array
|
||||||
{
|
{
|
||||||
$class = array_merge(self::TYPES[$key], ['value' => $rule, 'field' => $key]);
|
if (is_numeric($key)) {
|
||||||
|
$class = self::TYPES[$key];
|
||||||
|
} else {
|
||||||
|
$class = array_merge(self::TYPES[$key], ['value' => $rule, 'field' => $key]);
|
||||||
|
}
|
||||||
$isFirst = false;
|
$isFirst = false;
|
||||||
if ($class['class'] === RequiredValidatorFilter::class) {
|
if ($class['class'] === RequiredValidatorFilter::class) {
|
||||||
$isFirst = true;
|
$isFirst = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user