refactoring the validator.
This commit is contained in:
@@ -292,7 +292,9 @@ class Validator {
|
|||||||
*/
|
*/
|
||||||
protected function validate_between($attribute, $value, $parameters)
|
protected function validate_between($attribute, $value, $parameters)
|
||||||
{
|
{
|
||||||
return $this->size($attribute, $value) >= $parameters[0] and $this->size($attribute, $value) <= $parameters[1];
|
$size = $this->size($attribute, $value);
|
||||||
|
|
||||||
|
return $size >= $parameters[0] and $size <= $parameters[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user