Skip to content

Commit c33a57b

Browse files
committed
Fix whitespace
1 parent b24fb2d commit c33a57b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Illuminate/Validation/Validator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ public function setPresenceVerifier(PresenceVerifierInterface $presenceVerifier)
13581358
*
13591359
* @param string $exception
13601360
* @return void
1361-
*
1361+
*
13621362
* @throws InvalidArgumentException
13631363
*/
13641364
public function setException($exception)
@@ -1368,7 +1368,7 @@ public function setException($exception)
13681368
sprintf('Exception [%s] is invalid. It must extend [%s].', $exception, ValidationException::class)
13691369
);
13701370
}
1371-
1371+
13721372
$this->exception = $exception;
13731373
}
13741374

tests/Validation/ValidationValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ public function testCustomException()
634634
$v = new Validator($trans, ['name' => ''], ['name' => 'required']);
635635

636636
$exception = new class ($v) extends ValidationException {};
637-
637+
638638
$v->setException($exception);
639639

640640
try {

0 commit comments

Comments
 (0)