Passed
Push — master ( 4633d8...be0c82 )
by Alain
02:10
created
src/Recipients.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     public function __construct(array $emails)
29 29
     {
30 30
         parent::__construct(array_filter(
31
-            array_map(function ($value) {
31
+            array_map(function($value) {
32 32
                 if ($value instanceof EmailAddress) {
33 33
                     return $value;
34 34
                 }
Please login to merge, or discard this patch.
src/Support/EmailAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
      */
89 89
     public function getAddress()
90 90
     {
91
-        return $this->getLocalPart() . '@' . $this->getDomainPart();
91
+        return $this->getLocalPart().'@'.$this->getDomainPart();
92 92
     }
93 93
 
94 94
     /**
Please login to merge, or discard this patch.
src/Support/Domain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
             throw InvalidDomain::from($domain);
45 45
         }
46 46
 
47
-        $this->domain = (string)$domain;
47
+        $this->domain = (string) $domain;
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.