@@ -21,7 +21,7 @@ |
||
| 21 | 21 | public static function validate(string $hostname) : bool |
| 22 | 22 | { |
| 23 | 23 | $hostname = preg_replace('/^\*\./', '', $hostname); |
| 24 | - if(in_array($hostname, ['@', '*', '.'])) { |
|
| 24 | + if (in_array($hostname, ['@', '*', '.'])) { |
|
| 25 | 25 | return true; |
| 26 | 26 | } |
| 27 | 27 | |