Skip to content

Commit

Permalink
Merge pull request #128 from heypixel/master
Browse files Browse the repository at this point in the history
PHP class: convert isBlacklisted method in public
  • Loading branch information
FGRibreau authored Mar 6, 2018
2 parents c193518 + c97f3f1 commit b2c19d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/php/MailChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private static function validEmail($email) {
}
}

private static function isBlacklisted($email) {
public static function isBlacklisted($email) {
$parts = explode("@", $email);
$domain = end($parts);

Expand Down

0 comments on commit b2c19d3

Please sign in to comment.