@@ -41,7 +41,7 @@ discard block |
||
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 |
||
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 | } |
@@ -60,7 +60,7 @@ discard block |
||
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 |
||
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 | } |