| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 20 | 2 | public function requestIsCacheable(ServerRequestInterface $request): bool |
|
| 21 | { |
||
| 22 | if ( |
||
| 23 | 2 | $request->getAttribute(SessionMiddleware::ATTRIBUTE_NAME) !== null && |
|
| 24 | 2 | $request->getAttribute(SessionMiddleware::ATTRIBUTE_NAME)->isActive() === true |
|
| 25 | ) { |
||
| 26 | 1 | return false; |
|
| 27 | } |
||
| 28 | |||
| 29 | 1 | return $this->cacheConfiguration->requestIsCacheable($request); |
|
| 30 | } |
||
| 59 |