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