Completed
Push — master ( 8b665e...8e58d2 )
by Lars
03:05
created
src/voku/helper/EmailCheck.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -835,10 +835,10 @@  discard block
 block discarded – undo
835 835
     }
836 836
 
837 837
     if ($quoteHelperForIdn === true) {
838
-      $local = '"' . $local . '"';
838
+      $local = '"'.$local.'"';
839 839
     }
840 840
 
841
-    $email = $local . '@' . $domain;
841
+    $email = $local.'@'.$domain;
842 842
 
843 843
     if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
844 844
       return false;
@@ -923,7 +923,7 @@  discard block
 block discarded – undo
923 923
   public static function isDnsError($domain)
924 924
   {
925 925
     if (function_exists('checkdnsrr')) {
926
-      return !checkdnsrr($domain . '.', 'MX') || !checkdnsrr($domain, 'A');
926
+      return !checkdnsrr($domain.'.', 'MX') || !checkdnsrr($domain, 'A');
927 927
     }
928 928
 
929 929
     throw new \Exception(' Can\'t call checkdnsrr');
Please login to merge, or discard this patch.