Passed
Push — master ( be0c82...f539f4 )
by Alain
02:33
created
src/Support/EmailAddress.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     public function getAddress()
95 95
     {
96
-        return $this->getLocalPart() . '@' . $this->getDomain();
96
+        return $this->getLocalPart().'@'.$this->getDomain();
97 97
     }
98 98
 
99 99
     /**
@@ -115,6 +115,6 @@  discard block
 block discarded – undo
115 115
      */
116 116
     protected function isValid($email)
117 117
     {
118
-        return (bool)filter_var($email, FILTER_VALIDATE_EMAIL);
118
+        return (bool) filter_var($email, FILTER_VALIDATE_EMAIL);
119 119
     }
120 120
 }
121 121
\ No newline at end of file
Please login to merge, or discard this patch.