| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public static function configureCache(): void |
||
| 44 | { |
||
| 45 | if (Cache::getConfig(self::CACHE_KEY) !== null) { |
||
| 46 | return; |
||
| 47 | } |
||
| 48 | |||
| 49 | Cache::setConfig( |
||
| 50 | self::CACHE_KEY, |
||
| 51 | [ |
||
| 52 | 'className' => 'File', |
||
| 53 | 'prefix' => 'saito_thumbnails-', |
||
| 54 | 'path' => CACHE, |
||
| 55 | 'groups' => ['uploads'], |
||
| 56 | 'duration' => '+1 year' |
||
| 57 | ] |
||
| 58 | ); |
||
| 59 | } |
||
| 60 | } |
||
| 61 |