| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class BasicResponse |
||
| 12 | { |
||
| 13 | public const STATUS_OK = 'OK'; |
||
| 14 | public const STATUS_FAIL = 'FAIL'; |
||
| 15 | |||
| 16 | public string $serverKey = ''; |
||
| 17 | public string $status = self::STATUS_OK; |
||
| 18 | public string $errorMessage = self::STATUS_OK; |
||
| 19 | public string $roundaboutClient = ''; |
||
| 20 | |||
| 21 | 74 | public function setBasics(string $serverKey, string $roundaboutClient): self |
|
| 28 |