| 1 | <?php |
||
| 5 | class CacheNormalizer |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * ّFigures out how long the cache life time should be. |
||
| 9 | * @param $widget |
||
| 10 | * @return null |
||
| 11 | */ |
||
| 12 | public function normalizeCacheLifeTime($widget) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * ّFigures out what the cache tags should be. |
||
| 25 | * @param $widget |
||
| 26 | * @return null |
||
| 27 | */ |
||
| 28 | public function normalizeCacheTags($widget) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Determine whether cache tags should be applied or not |
||
| 47 | * @return bool |
||
| 48 | */ |
||
| 49 | private function cacheCanUseTags() |
||
| 53 | } |
||
| 54 |