Skip to content

Commit

Permalink
Accept All
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroennoten committed Jan 26, 2017
1 parent 409412d commit 2bfa9b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EmailValidation/EmailValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ public function isValid($email)
return false;
}

return $this->briteVerify->verify($email)->status == 'valid';
return in_array($this->briteVerify->verify($email)->status, ['valid', 'accept_all']);
}
}

0 comments on commit 2bfa9b0

Please sign in to comment.