| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class NoCache implements CacheStrategy |
||
| 11 | { |
||
| 12 | 10 | public function __construct(StorageInterface $storage = null) |
|
| 13 | { |
||
| 14 | // No caching, so don't do anything with the storage.. |
||
| 15 | 10 | } |
|
| 16 | |||
| 17 | 5 | public function request(RequestInterface $request, callable $handler): PromiseInterface |
|
| 20 | } |
||
| 21 | } |
||
| 22 |