Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit 98d39da

Browse files
committed
fix
1 parent 3545082 commit 98d39da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Misc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ function __construct
1212
private ValidatorInterface $validator,
1313
)
1414
{}
15-
15+
1616
public function isEmailValid(string $email) : Result
1717
{
1818
$emailConstraint = new Assert\Email();
19-
$errors = $this->validator->validate( $email, $emailConstraint );
19+
$errors = $this->validator->validate($email, $emailConstraint);
2020

2121
if (empty($errors->count()))
2222
{

0 commit comments

Comments
 (0)