| Total Complexity | 6 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class ReportResponse { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var String |
||
| 11 | */ |
||
| 12 | public string $Status; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | public string $Message; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var ReportData|ReportData[] |
||
| 21 | */ |
||
| 22 | public $Data; |
||
| 23 | |||
| 24 | public function __construct($response) { |
||
| 32 | } |
||
| 33 | } |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return ReportData|ReportData[] |
||
| 38 | */ |
||
| 39 | public function getData(): ReportData { |
||
| 40 | return $this->Data; |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function getMessage(): string { |
||
| 47 | return $this->Message; |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return String |
||
| 52 | */ |
||
| 53 | public function getStatus(): string { |
||
| 55 | } |
||
| 56 | |||
| 57 | |||
| 59 |