Skip to content

Commit

Permalink
Apply StyleCi patch
Browse files Browse the repository at this point in the history
  • Loading branch information
shadoWalker89 committed Oct 14, 2016
1 parent 7821b5a commit 87f9761
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Illuminate/Foundation/Http/FormRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,16 @@ protected function getValidatorInstance()
if (method_exists($this, 'validator')) {
$validator = $this->container->call([$this, 'validator'], compact('factory'));
} else {
$validator = $factory->make(
$this->validationData(), $this->container->call([$this, 'rules']), $this->messages(), $this->attributes()
);
$validator = $factory->make(
$this->validationData(), $this->container->call([$this, 'rules']), $this->messages(), $this->attributes()
);
}

if (method_exists($this, 'validatorHooks')) {
$this->validatorHooks($validator);
$this->validatorHooks($validator);
}

return $validator;
return $validator;
}

/**
Expand Down

0 comments on commit 87f9761

Please sign in to comment.