Completed
Push — master ( 72dacd...198bb5 )
by Alessandro
03:45
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.
lib/Client/Client.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function send(Sms $sms)
59 59
     {
60
-        if (! $sms->hasRecipients()) {
60
+        if (!$sms->hasRecipients()) {
61 61
             throw new NoRecipientsSpecifiedException();
62 62
         }
63 63
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             ;
73 73
 
74 74
             foreach ($chunk as $recipient) {
75
-                if (! isset($sms->getRecipientVariables()[$recipient])) {
75
+                if (!isset($sms->getRecipientVariables()[$recipient])) {
76 76
                     continue;
77 77
                 }
78 78
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
                 SendMethods::TEST_CLASSIC_PLUS,
137 137
                 SendMethods::TEST_BASIC,
138 138
             ])
139
-            ->setAllowedValues('validity_period', function (\DateInterval $value) {
139
+            ->setAllowedValues('validity_period', function(\DateInterval $value) {
140 140
                 return $value->i >= ValidityPeriods::MIN && $value->i <= ValidityPeriods::MAX;
141 141
             })
142 142
             ->setAllowedValues('encoding_schema', [
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
     {
195 195
         $recipients = $sms->getRecipients();
196 196
 
197
-        if (! $sms->hasRecipientVariables()) {
197
+        if (!$sms->hasRecipientVariables()) {
198 198
             $recipients = array_map([$this, 'normalizePhoneNumber'], $recipients);
199 199
 
200 200
             return json_encode($recipients);
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 
203 203
         $recipientVariables = $sms->getRecipientVariables();
204 204
 
205
-        return json_encode(array_map(function ($recipient) use ($recipientVariables) {
205
+        return json_encode(array_map(function($recipient) use ($recipientVariables) {
206 206
             $targetVariables = [];
207 207
             if (isset($recipientVariables[$recipient])) {
208 208
                 $targetVariables = $recipientVariables[$recipient];
Please login to merge, or discard this patch.
lib/DataStructure/Response.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -45,22 +45,22 @@
 block discarded – undo
45 45
 
46 46
         $doc = simplexml_load_string($rawResponse);
47 47
         foreach (SendMethods::all() as $method) {
48
-            if (! isset($doc->$method)) {
48
+            if (!isset($doc->$method)) {
49 49
                 continue;
50 50
             }
51 51
 
52 52
             $element = $doc->$method;
53 53
 
54
-            if (! isset($element->status)) {
54
+            if (!isset($element->status)) {
55 55
                 throw new UnknownErrorResponseException('Missing response status value from Skebby');
56 56
             }
57 57
 
58
-            $this->status = (string)$element->status;
59
-            $this->messageId = isset($element->id) ? (string)$element->id : null;
58
+            $this->status = (string) $element->status;
59
+            $this->messageId = isset($element->id) ? (string) $element->id : null;
60 60
 
61
-            if (! $this->isSuccessful()) {
62
-                $this->code = isset($element->code) ? (string)$element->code : null;
63
-                $this->errorMessage = isset($element->message) ? (string)$element->message : 'Unknown error';
61
+            if (!$this->isSuccessful()) {
62
+                $this->code = isset($element->code) ? (string) $element->code : null;
63
+                $this->errorMessage = isset($element->message) ? (string) $element->message : 'Unknown error';
64 64
             }
65 65
 
66 66
             return;
Please login to merge, or discard this patch.