| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class AfterRequest |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @param ResponseInterface|null $response Response instance or null if response generation failed due to an error. |
||
| 13 | */ |
||
| 14 | 4 | public function __construct(private ?ResponseInterface $response) |
|
| 16 | 4 | } |
|
| 17 | |||
| 18 | 2 | public function getResponse(): ?ResponseInterface |
|
| 23 |