| 1 | <?php |
||
| 18 | class Cache implements ResultModifier |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var int How may seconds the cache entry is valid |
||
| 22 | */ |
||
| 23 | private $cacheLifetime; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param int $cacheLifetime How many seconds the cached entry is valid |
||
| 27 | */ |
||
| 28 | public function __construct($cacheLifetime) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param AbstractQuery $query |
||
| 35 | */ |
||
| 36 | public function modify(AbstractQuery $query) |
||
| 40 | } |
||
| 41 |