Conditions | 3 |
Paths | 3 |
Total Lines | 17 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
92 | public function getRecipient() |
||
93 | { |
||
94 | $recipientKeys = [ |
||
95 | 'to', |
||
96 | 'id', |
||
97 | 'channel', |
||
98 | 'webhook', |
||
99 | ]; |
||
100 | |||
101 | foreach ($recipientKeys as $key) { |
||
102 | if (array_key_exists($key, $this->dispatchData)) { |
||
103 | return $this->dispatchData[$key]; |
||
104 | } |
||
105 | } |
||
106 | |||
107 | return 'NA'; |
||
108 | } |
||
109 | |||
125 | } |