]> git.mxchange.org Git - friendica-addons.git/commitdiff
CleanUp Cache namespace
authornupplaPhil <admin@philipp.info>
Sat, 18 Jan 2020 14:41:18 +0000 (15:41 +0100)
committernupplaPhil <admin@philipp.info>
Sat, 18 Jan 2020 14:41:18 +0000 (15:41 +0100)
- Introduce enum "Duration"
- Introduce enum "Type"
- Move "Cache\Cache" to "BaseCache"

openstreetmap/openstreetmap.php

index 6192b93f6c49cfc6892a399affb1c3dd3b5c921b..5e608ed349ce5828b8c3d9f25dcd4b42eb332fb0 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
+use Friendica\Core\Cache\Duration;
 use Friendica\DI;
-use Friendica\Core\Cache\Cache;
 use Friendica\Core\Config;
 use Friendica\Core\Hook;
 use Friendica\Core\L10n;
@@ -137,7 +137,7 @@ function openstreetmap_get_coordinates($a, &$b)
                $curlResult = Network::curl($nomserver . $args);
                if ($curlResult->isSuccess()) {
                        $j = json_decode($curlResult->getBody(), true);
-                       DI::cache()->set($cachekey, $j, Cache::MONTH);
+                       DI::cache()->set($cachekey, $j, Duration::MONTH);
                }
        }