Passed
Push — master ( 1f2094...564202 )
by Zaahid
03:47
created
src/Header/Consumer/AddressEmailConsumer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function getTokenSeparators()
43 43
     {
44
-        return [ '<', '>' ];
44
+        return ['<', '>'];
45 45
     }
46 46
     
47 47
     /**
@@ -80,6 +80,6 @@  discard block
 block discarded – undo
80 80
         foreach ($parts as $p) {
81 81
             $strEmail .= $p->getValue();
82 82
         }
83
-        return [ $this->partFactory->newAddressPart('', $strEmail) ];
83
+        return [$this->partFactory->newAddressPart('', $strEmail)];
84 84
     }
85 85
 }
Please login to merge, or discard this patch.
src/Header/Consumer/AddressConsumer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function getTokenSeparators()
62 62
     {
63
-        return [ ',', ';', '\s+' ];
63
+        return [',', ';', '\s+'];
64 64
     }
65 65
     
66 66
     /**
@@ -146,6 +146,6 @@  discard block
 block discarded – undo
146 146
             }
147 147
             $strEmail .= $part->getValue();
148 148
         }
149
-        return [ $this->partFactory->newAddressPart($strName, $strEmail) ];
149
+        return [$this->partFactory->newAddressPart($strName, $strEmail)];
150 150
     }
151 151
 }
Please login to merge, or discard this patch.