|
|
@ -390,7 +390,7 @@ class Model extends Component implements IteratorAggregate, ArrayAccess |
|
|
|
if ($rule instanceof Validator) { |
|
|
|
if ($rule instanceof Validator) { |
|
|
|
$validators->append($rule); |
|
|
|
$validators->append($rule); |
|
|
|
} elseif (is_array($rule) && isset($rule[0], $rule[1])) { // attributes, validator type |
|
|
|
} elseif (is_array($rule) && isset($rule[0], $rule[1])) { // attributes, validator type |
|
|
|
$validator = Validator::createValidator($rule[1], $this, $rule[0], array_slice($rule, 2)); |
|
|
|
$validator = Validator::createValidator($rule[1], $this, (array) $rule[0], array_slice($rule, 2)); |
|
|
|
$validators->append($validator); |
|
|
|
$validators->append($validator); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
throw new InvalidConfigException('Invalid validation rule: a rule must specify both attribute names and validator type.'); |
|
|
|
throw new InvalidConfigException('Invalid validation rule: a rule must specify both attribute names and validator type.'); |
|
|
|