From eb3a5b0dc932003933073fb645194554fc405dd8 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 22 Jun 2011 06:43:48 -0700 Subject: [PATCH] Improving validation code and comments. --- system/validator.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/validator.php b/system/validator.php index a3991996..1a26ca39 100644 --- a/system/validator.php +++ b/system/validator.php @@ -24,7 +24,7 @@ class Validator { public $rules = array(); /** - * Create a new Eloquent validator instance. + * Create a new Validator instance. * * @param mixed $target * @return void @@ -41,7 +41,7 @@ public function __construct($target) } /** - * Create a new Eloquent validator instance. + * Create a new Validator instance. * * @param mixed $target * @return Validator @@ -52,7 +52,7 @@ public static function of($target) } /** - * Determine if the model passes all of the validation rules. + * Determine if the attributes pass all of the validation rules. * * @return bool */