Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
53 | public function setResponseHeaders(Response $response, string $format, \DateTime $lastModified): void |
||
54 | { |
||
55 | $response->headers->set('Content-Type', $this->getContentType($format)); |
||
56 | |||
57 | $this->public ? $response->setPublic() : $response->setPrivate(); |
||
58 | |||
59 | $response->setMaxAge($this->maxAge); |
||
60 | $response->setLastModified($lastModified); |
||
61 | } |
||
62 | |||
69 |