| Conditions | 3 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 31 | public static function getMainUrls($forceRefresh = false){ |
||
| 32 | |||
| 33 | if (!isset(self::$cache['main_urls']) || $forceRefresh) { |
||
| 34 | $configs = Link::where('main', '=', true)->get(['url']); |
||
| 35 | self::$cache['main_urls'] = $configs->pluck('url')->toArray(); |
||
| 36 | } |
||
| 37 | |||
| 38 | return self::$cache['main_urls']; |
||
| 39 | } |
||
| 40 | |||
| 52 |