| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 29 | 2 | public function getResponse(string $path, \DateTime $modifiedSince) : ResponseInterface |
|
| 30 | { |
||
| 31 | 2 | if (file_exists($path)) { |
|
| 32 | 1 | return new Response( |
|
| 33 | 1 | file_get_contents($path), |
|
| 34 | 1 | new \DateTime('@'.filemtime($path)) |
|
| 35 | ); |
||
| 36 | } |
||
| 37 | |||
| 38 | 1 | throw new NotFoundException($path); |
|
| 39 | } |
||
| 40 | } |
||
| 41 |