Browse Source

Created Validator::make()

Michael Hasselbring 13 years ago
parent
commit
36fe006b08
1 changed files with 13 additions and 0 deletions
  1. 13 0
      system/validator.php

+ 13 - 0
system/validator.php

@@ -52,6 +52,19 @@ class Validator {
 		$this->messages = $messages;
 		$this->messages = $messages;
 	}
 	}
 
 
+	/**
+	 * Factory for creating new validator instances.
+	 *
+	 * @param  array      $attributes
+	 * @param  array      $rules
+	 * @param  array      $messages
+	 * @return Validator
+	 */
+	public static function make($attributes, $rules, $messages = array())
+	{
+		return new static($attributes, $rules, $messages);
+	}
+
 	/**
 	/**
 	 * Validate the target array using the specified validation rules.
 	 * Validate the target array using the specified validation rules.
 	 *
 	 *