| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | class ApiContext implements Context, ClientAwareInterface, StorageAwareInterface |
||
| 27 | { |
||
| 28 | use ClientAwareTrait; |
||
| 29 | use StorageAwareTrait; |
||
| 30 | |||
| 31 | public function getRepose(): Response |
||
| 32 | { |
||
| 33 | return $this->client->getResponse(); |
||
|
|
|||
| 34 | } |
||
| 35 | |||
| 36 | public function getContainer(): ContainerInterface |
||
| 37 | { |
||
| 38 | return $this->client->getContainer(); |
||
| 39 | } |
||
| 40 | |||
| 41 | public function getDoctrine(): Registry |
||
| 44 | } |
||
| 45 | } |
||
| 46 |