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