Skip to content

Commit

Permalink
Indentation changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
theriddleofenigma committed Oct 27, 2020
1 parent c3cd189 commit 73a590b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ModelValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ protected function getMessages()
return $this->model->validationMessages();
}

if(property_exists($this->model, 'validationMessages')) {
if (property_exists($this->model, 'validationMessages')) {
return $this->model->validationMessages;
}
}
Expand All @@ -106,7 +106,7 @@ protected function getAttributes()
return $this->model->validationAttributes();
}

if(property_exists($this->model, 'validationAttributes')) {
if (property_exists($this->model, 'validationAttributes')) {
return $this->model->validationAttributes;
}
}
Expand All @@ -122,7 +122,7 @@ protected function getRules()
return $this->model->validationRules();
}

if(property_exists($this->model, 'validationRules')) {
if (property_exists($this->model, 'validationRules')) {
return $this->model->validationRules;
}
}
Expand Down

0 comments on commit 73a590b

Please sign in to comment.