Skip to content

Commit

Permalink
Egn class: Fixing bugs, wrong method name.
Browse files Browse the repository at this point in the history
Signed-off-by:Ivan Tcholakov <[email protected]>
  • Loading branch information
ivantcholakov committed Jun 29, 2017
1 parent 3300e81 commit 00e382c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Egn.php
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public static function generate($day = 0, $mon = 0, $year = 0, $sex = 0, $region

public static function get_gender($string) {

if (self::is_forigner($string)) {
if (self::is_foreigner($string)) {
return null;
}

Expand All @@ -352,7 +352,7 @@ public static function get_gender($string) {

public static function get_birthday($string) {

if (self::is_forigner($string)) {
if (self::is_foreigner($string)) {
return null;
}

Expand Down

0 comments on commit 00e382c

Please sign in to comment.