| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class CallbackCachingPolicyController extends CachingPolicyController |
||
| 6 | { |
||
| 7 | private static $url_segment = 'CallbackCachingPolicyController'; |
||
|
|
|||
| 8 | |||
| 9 | public function getCacheAge($age) |
||
| 10 | { |
||
| 11 | return '1001'; |
||
| 12 | } |
||
| 13 | |||
| 14 | public function getVary($vary) |
||
| 15 | { |
||
| 16 | return 'X-HeightWeight'; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getModificationTimestamp() |
||
| 22 | } |
||
| 23 | } |
||
| 24 |