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