| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class RemoveSignerResult implements ResultInterface |
||
| 10 | { |
||
| 11 | /** @var string response status */ |
||
| 12 | private $status; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Fields expected in response |
||
| 16 | */ |
||
| 17 | public function getFields(): array |
||
| 18 | { |
||
| 19 | return [ |
||
| 20 | 'status', |
||
| 21 | ]; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Set status |
||
| 26 | */ |
||
| 27 | public function setStatus(string $status): void |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get status |
||
| 34 | */ |
||
| 35 | public function getStatus(): string |
||
| 38 | } |
||
| 39 | } |
||
| 40 |