| Conditions | 3 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public static function getUrls($forceRefresh = false) // returnUrls( |
||
| 21 | { |
||
| 22 | if (!isset(self::$cache['all_urls']) || $forceRefresh) { |
||
| 23 | $configs = Link::allCached($forceRefresh); |
||
| 24 | self::$cache['all_urls'] = $configs->pluck('url')->toArray(); |
||
| 25 | } |
||
| 26 | return self::$cache['all_urls']; |
||
| 27 | } |
||
| 28 | public static function getMainUrls($forceRefresh = false) |
||
| 43 | } |