@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | public function hasRecipients() |
| 114 | 114 | { |
| 115 | - return ! empty($this->recipients); |
|
| 115 | + return !empty($this->recipients); |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | */ |
| 146 | 146 | public function addRecipientVariable($recipient, $recipientVariable, $recipientVariableValue) |
| 147 | 147 | { |
| 148 | - if (! isset($this->recipientVariables[$recipient])) { |
|
| 148 | + if (!isset($this->recipientVariables[$recipient])) { |
|
| 149 | 149 | $this->recipientVariables[$recipient] = []; |
| 150 | 150 | } |
| 151 | 151 | |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | */ |
| 173 | 173 | public function hasRecipientVariables() |
| 174 | 174 | { |
| 175 | - return ! empty($this->recipientVariables); |
|
| 175 | + return !empty($this->recipientVariables); |
|
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | /** |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | */ |
| 243 | 243 | public function setDeliveryStart(\DateTime $deliveryStart = null) |
| 244 | 244 | { |
| 245 | - if (null !== $deliveryStart && $deliveryStart < date_create_from_format('U', (string)time())) { |
|
| 245 | + if (null !== $deliveryStart && $deliveryStart < date_create_from_format('U', (string) time())) { |
|
| 246 | 246 | throw new InvalidDeliveryStartException(); |
| 247 | 247 | } |
| 248 | 248 | |