| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | trait ResponseUtilsTrait |
||
| 16 | { |
||
| 17 | 1 | private function generateImageResponse(string $imagePath): ResponseInterface |
|
| 18 | { |
||
| 19 | 1 | return $this->generateBinaryResponse($imagePath); |
|
| 20 | } |
||
| 21 | |||
| 22 | 1 | private function generateBinaryResponse(string $path, array $extraHeaders = []): ResponseInterface |
|
| 29 | } |
||
| 30 | } |
||
| 31 |