Conditions | 4 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
12 | 16 | public function normalize($widget) |
|
13 | { |
||
14 | 16 | if (! property_exists($widget, 'cacheLifeTime')) { |
|
15 | 13 | $widget->cacheLifeTime = (int) (config('widgetize.default_cache_lifetime', 0)); |
|
16 | } |
||
17 | |||
18 | 16 | if ($widget->cacheLifeTime === 'forever' || $widget->cacheLifeTime < 0) { |
|
19 | // 20.000 minutes is about 2 weeks which is long enough ! |
||
20 | 2 | $widget->cacheLifeTime = 20000; |
|
21 | } |
||
24 |