Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | trait ResponseUtilsTrait |
||
16 | { |
||
17 | /** |
||
18 | * @deprecated Use generateBinaryResponse method instead |
||
19 | */ |
||
20 | 2 | private function generateImageResponse(string $imagePath): ResponseInterface |
|
21 | { |
||
22 | 2 | return $this->generateBinaryResponse($imagePath); |
|
23 | } |
||
24 | |||
25 | 3 | private function generateBinaryResponse(string $path, array $extraHeaders = []): ResponseInterface |
|
32 | } |
||
33 | } |
||
34 |