| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 12 | class Repository extends Psr16Cache |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Get an item from the cache, or execute the given Closure and store the result. |
||
| 16 | * |
||
| 17 | * @param string $key |
||
| 18 | * @param \DateTimeInterface|\DateInterval|int|null $ttl |
||
| 19 | * @param \Closure $callback |
||
| 20 | * @return mixed |
||
| 21 | */ |
||
| 22 | public function remember($key, $ttl, Closure $callback) |
||
| 33 |