@@ -29,19 +29,19 @@ discard block |
||
29 | 29 | $surname = self::toUppercaseTr($surname); |
30 | 30 | } |
31 | 31 | |
32 | - if (! preg_match('/^[A-Z ÇĞÖŞÜİ]+$/', self::toUppercaseTr($name))) { |
|
32 | + if (!preg_match('/^[A-Z ÇĞÖŞÜİ]+$/', self::toUppercaseTr($name))) { |
|
33 | 33 | return false; |
34 | 34 | } |
35 | 35 | |
36 | - if (! preg_match('/^[A-Z ÇĞÖŞÜİ]+$/', self::toUppercaseTr($surname))) { |
|
36 | + if (!preg_match('/^[A-Z ÇĞÖŞÜİ]+$/', self::toUppercaseTr($surname))) { |
|
37 | 37 | return false; |
38 | 38 | } |
39 | 39 | |
40 | - if (! preg_match('/^[0-9]{4}$/', $birthYear)) { |
|
40 | + if (!preg_match('/^[0-9]{4}$/', $birthYear)) { |
|
41 | 41 | return false; |
42 | 42 | } |
43 | 43 | |
44 | - if (! self::verify($tcKimlikNo)) { |
|
44 | + if (!self::verify($tcKimlikNo)) { |
|
45 | 45 | return false; |
46 | 46 | } |
47 | 47 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | return false; |
71 | 71 | } |
72 | 72 | |
73 | - if (! preg_match('/^[1-9]{1}[0-9]{9}[0,2,4,6,8]{1}$/', $tcKimlikNo)) { |
|
73 | + if (!preg_match('/^[1-9]{1}[0-9]{9}[0,2,4,6,8]{1}$/', $tcKimlikNo)) { |
|
74 | 74 | return false; |
75 | 75 | } |
76 | 76 |