| Conditions | 4 |
| Paths | 4 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | 3 | public function setRecipients($recipients) |
|
| 46 | { |
||
| 47 | 3 | if (is_string($recipients) === true || is_int($recipients) === true) { |
|
| 48 | 2 | $recipients = [$recipients]; |
|
| 49 | } |
||
| 50 | |||
| 51 | 3 | $output = []; |
|
| 52 | |||
| 53 | 3 | foreach ($recipients as $number) { |
|
| 54 | 3 | $output[$number] = [ |
|
| 55 | 'ChannelType' => 'SMS', |
||
| 56 | ]; |
||
| 57 | } |
||
| 58 | |||
| 59 | 3 | $this->recipients = $output; |
|
| 60 | |||
| 61 | 3 | return $this; |
|
| 62 | } |
||
| 63 | } |
||
| 64 |