@@ -77,7 +77,7 @@ |
||
| 77 | 77 | 'yahhoo.de', |
| 78 | 78 | ]; |
| 79 | 79 | |
| 80 | -$result =& $data; |
|
| 80 | +$result = & $data; |
|
| 81 | 81 | unset($data); |
| 82 | 82 | |
| 83 | 83 | return $result; |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | 'example.org', |
| 12 | 12 | ]; |
| 13 | 13 | |
| 14 | -$result =& $data; |
|
| 14 | +$result = & $data; |
|
| 15 | 15 | unset($data); |
| 16 | 16 | |
| 17 | 17 | return $result; |
@@ -2381,7 +2381,7 @@ |
||
| 2381 | 2381 | 'zzz.com', |
| 2382 | 2382 | ]; |
| 2383 | 2383 | |
| 2384 | -$result =& $data; |
|
| 2384 | +$result = & $data; |
|
| 2385 | 2385 | unset($data); |
| 2386 | 2386 | |
| 2387 | 2387 | return $result; |
@@ -129,10 +129,10 @@ discard block |
||
| 129 | 129 | list($local, $domain) = self::punnycode($local, $domain); |
| 130 | 130 | |
| 131 | 131 | if ($quoteHelperForIdn === true) { |
| 132 | - $local = '"' . $local . '"'; |
|
| 132 | + $local = '"'.$local.'"'; |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | - $email = $local . '@' . $domain; |
|
| 135 | + $email = $local.'@'.$domain; |
|
| 136 | 136 | |
| 137 | 137 | if (!\filter_var($email, FILTER_VALIDATE_EMAIL)) { |
| 138 | 138 | return false; |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | */ |
| 231 | 231 | protected static function getData(string $file) |
| 232 | 232 | { |
| 233 | - $file = __DIR__ . '/data/' . $file . '.php'; |
|
| 233 | + $file = __DIR__.'/data/'.$file.'.php'; |
|
| 234 | 234 | if (\file_exists($file)) { |
| 235 | 235 | /** @noinspection PhpIncludeInspection */ |
| 236 | 236 | return require $file; |
@@ -252,12 +252,12 @@ discard block |
||
| 252 | 252 | { |
| 253 | 253 | if (\function_exists('checkdnsrr')) { |
| 254 | 254 | /** @noinspection IfReturnReturnSimplificationInspection */ |
| 255 | - $mxFound = \checkdnsrr($domain . '.', 'MX'); |
|
| 255 | + $mxFound = \checkdnsrr($domain.'.', 'MX'); |
|
| 256 | 256 | if ($mxFound === true) { |
| 257 | 257 | return false; |
| 258 | 258 | } |
| 259 | 259 | |
| 260 | - $aFound = \checkdnsrr($domain . '.', 'A'); |
|
| 260 | + $aFound = \checkdnsrr($domain.'.', 'A'); |
|
| 261 | 261 | /** @noinspection IfReturnReturnSimplificationInspection */ |
| 262 | 262 | if ($aFound === true) { |
| 263 | 263 | return false; |