| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class CachedResponse |
||
| 9 | { |
||
| 10 | private array $_headers; |
||
| 11 | private string $_body; |
||
| 12 | private string $_protocol; |
||
| 13 | private int $_statusCode; |
||
| 14 | private string $_reason; |
||
| 15 | |||
| 16 | 14 | public function __construct(ResponseInterface $response) |
|
| 23 | 14 | } |
|
| 24 | |||
| 25 | 11 | public function getResponse(): Response |
|
| 36 |