| Conditions | 3 |
| Paths | 3 |
| Total Lines | 8 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | public function __construct($response) { |
||
| 25 | $this->Status = $response['status']; |
||
| 26 | $this->Message = $response['message']; |
||
| 27 | if (array_key_exists('messageId', $response['data'])) { |
||
| 28 | $this->Data = new ReportData($response['data']); |
||
| 29 | } else { |
||
| 30 | foreach ($response['data'] as $data) { |
||
| 31 | $this->Data[] = new ReportData($data); |
||
| 32 | } |
||
| 59 |