| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class KlarnaStartSessionResponseContainer extends AbstractResponseContainer |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string|null |
||
| 14 | */ |
||
| 15 | protected $response; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param string $response |
||
| 19 | * |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | public function setResponse(string $response): void |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string|null |
||
| 29 | */ |
||
| 30 | public function getResponse(): ?string |
||
| 35 |