Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 2.2559 |
Changes | 4 | ||
Bugs | 3 | Features | 0 |
1 | <?php |
||
50 | 10 | private function cacheState() |
|
51 | { |
||
52 | 10 | if (! $this->policies->widgetShouldUseCache()) { |
|
53 | 10 | return ' 
 Cache: is globally turned off (You should put "enable_cache" => true in config\widgetize.php) '; |
|
54 | } |
||
55 | $l = $this->widget->cacheLifeTime->i ?? 0; |
||
56 | |||
57 | return " 
Cache : {$l} (min) "; |
||
58 | } |
||
78 |