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