Commit 4a4a79ce authored by Taylor Otwell's avatar Taylor Otwell

Remove comment bloat from Validator class.

parent 42cff59a
...@@ -38,10 +38,7 @@ class Validator { ...@@ -38,10 +38,7 @@ class Validator {
$target = Input::get(); $target = Input::get();
} }
// --------------------------------------------------------- // If the source is an Eloquent model, use the model's attributes as the validation attributes.
// If the source is an Eloquent model, use the model's
// attributes as the validation attributes.
// ---------------------------------------------------------
$this->attributes = ($target instanceof DB\Eloquent) ? $target->attributes : (array) $target; $this->attributes = ($target instanceof DB\Eloquent) ? $target->attributes : (array) $target;
} }
...@@ -67,10 +64,6 @@ class Validator { ...@@ -67,10 +64,6 @@ class Validator {
foreach ($this->rules as $rule) foreach ($this->rules as $rule)
{ {
// ---------------------------------------------------------
// The error collector is passed to the rule so that the
// rule may conveniently add error messages.
// ---------------------------------------------------------
$rule->validate($this->attributes, $this->errors); $rule->validate($this->attributes, $this->errors);
} }
...@@ -82,10 +75,6 @@ class Validator { ...@@ -82,10 +75,6 @@ class Validator {
*/ */
public function __call($method, $parameters) public function __call($method, $parameters)
{ {
// ---------------------------------------------------------
// Check if the validation rule is defined in the rules
// directory. If it is, create a new rule and return it.
// ---------------------------------------------------------
if (file_exists(SYS_PATH.'validation/rules/'.$method.EXT)) if (file_exists(SYS_PATH.'validation/rules/'.$method.EXT))
{ {
$rule = '\\System\\Validation\\Rules\\'.$method; $rule = '\\System\\Validation\\Rules\\'.$method;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment