Browse Source

refactoring validation class.

Taylor Otwell 13 years ago
parent
commit
46199478d8
1 changed files with 1 additions and 4 deletions
  1. 1 4
      system/validator.php

+ 1 - 4
system/validator.php

@@ -489,10 +489,7 @@ class Validator {
 		{
 		{
 			list($rule, $parameters) = $this->parse($rule);
 			list($rule, $parameters) = $this->parse($rule);
 
 
-			if (in_array($rule, $rules))
-			{
-				return true;
-			}
+			if (in_array($rule, $rules)) return true;
 		}
 		}
 
 
 		return false;
 		return false;