Browse Source

refactoring the validator.

Taylor Otwell 13 years ago
parent
commit
faaea17fd3
1 changed files with 3 additions and 1 deletions
  1. 3 1
      laravel/validation/validator.php

+ 3 - 1
laravel/validation/validator.php

@@ -292,7 +292,9 @@ class Validator {
 	 */
 	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];
 	}
 
 	/**