Skip to content

Commit

Permalink
typo (laravel#15249)
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid authored and tillkruss committed Sep 8, 2016
1 parent e509b39 commit 648919d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Validation/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ protected function validateAttribute($attribute, $rule)

// If the attribute is a file, we will verify that the file upload was actually successful
// and if it wasn't we will add a failure for the attribute. Files may not successfully
// upload if they are too large bsaed on PHP's settings so we will bail in this case.
// upload if they are too large based on PHP's settings so we will bail in this case.
if (
$value instanceof UploadedFile && ! $value->isValid() &&
$this->hasRule($attribute, array_merge($this->fileRules, $this->implicitRules))
Expand Down

0 comments on commit 648919d

Please sign in to comment.