Move Cache::get() to DI::cache()->get()

This commit is contained in:
nupplaPhil
2020-01-07 00:45:49 +01:00
parent f68929633b
commit fe078410a1
16 changed files with 20 additions and 33 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ class Images
return $data;
}
$data = Cache::get($url);
$data = DI::cache()->get($url);
if (empty($data) || !is_array($data)) {
$data = self::getInfoFromURL($url);