Completed
Push — master ( 0c7105...b06ffb )
by Alessandro
19:33 queued 09:08
created
lib/DataStructure/Sms.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.