| Total Complexity | 4 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Coverage | 77.78% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 9 | abstract class AbstractResponse implements PayPalResponse  | 
            ||
| 10 | { | 
            ||
| 11 | protected HttpClientResponse $response;  | 
            ||
| 12 | |||
| 13 | 8 | public function __construct(HttpClientResponse $response)  | 
            |
| 14 |     { | 
            ||
| 15 | 8 | $this->response = $response;  | 
            |
| 16 | 8 | }  | 
            |
| 17 | |||
| 18 | 8 | public function getResponse(): HttpClientResponse  | 
            |
| 19 |     { | 
            ||
| 20 | 8 | return $this->response;  | 
            |
| 21 | }  | 
            ||
| 22 | |||
| 23 | 8 | public function toArray(): array  | 
            |
| 29 | }  | 
            ||
| 30 | }  | 
            ||
| 31 | }  | 
            ||
| 32 |