@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | public function send(Sms $sms) |
| 50 | 50 | { |
| 51 | - if (! $sms->hasRecipients()) { |
|
| 51 | + if (!$sms->hasRecipients()) { |
|
| 52 | 52 | throw new NoRecipientsSpecifiedException(); |
| 53 | 53 | } |
| 54 | 54 | |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | ; |
| 64 | 64 | |
| 65 | 65 | foreach ($chunk as $recipient) { |
| 66 | - if (! isset($sms->getRecipientVariables()[$recipient])) { |
|
| 66 | + if (!isset($sms->getRecipientVariables()[$recipient])) { |
|
| 67 | 67 | continue; |
| 68 | 68 | } |
| 69 | 69 | |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | SendMethods::TEST_CLASSIC_PLUS, |
| 128 | 128 | SendMethods::TEST_BASIC, |
| 129 | 129 | ]) |
| 130 | - ->setAllowedValues('validity_period', function (\DateInterval $value) { |
|
| 130 | + ->setAllowedValues('validity_period', function(\DateInterval $value) { |
|
| 131 | 131 | return $value->i >= ValidityPeriods::MIN && $value->i <= ValidityPeriods::MAX; |
| 132 | 132 | }) |
| 133 | 133 | ->setAllowedValues('encoding_schema', [ |
@@ -191,14 +191,14 @@ discard block |
||
| 191 | 191 | { |
| 192 | 192 | $recipients = $sms->getRecipients(); |
| 193 | 193 | |
| 194 | - if (! $sms->hasRecipientVariables()) { |
|
| 194 | + if (!$sms->hasRecipientVariables()) { |
|
| 195 | 195 | $recipients = array_map([$this, 'normalizePhoneNumber'], $recipients); |
| 196 | 196 | return json_encode($recipients); |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | $recipientVariables = $sms->getRecipientVariables(); |
| 200 | 200 | |
| 201 | - return json_encode(array_map(function ($recipient) use ($recipientVariables) { |
|
| 201 | + return json_encode(array_map(function($recipient) use ($recipientVariables) { |
|
| 202 | 202 | $targetVariables = []; |
| 203 | 203 | if (isset($recipientVariables[$recipient])) { |
| 204 | 204 | $targetVariables = $recipientVariables[$recipient]; |