]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/ICache.php
Merge branch 'bug/phpinfo-accessible-hotfix' into develop
[friendica.git] / src / Core / Cache / ICache.php
index f57e105cc0ab880737ef238c3d9f55ad689b6858..5984409bccc76f090bdb9051ce69bfecdd00caef 100644 (file)
@@ -1,24 +1,31 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Core\Cache;
 
 /**
  * Cache Interface
- *
- * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 interface ICache
 {
-       const MONTH        = 2592000;
-       const WEEK         = 604800;
-       const DAY          = 86400;
-       const HOUR         = 3600;
-       const HALF_HOUR    = 1800;
-       const QUARTER_HOUR = 900;
-       const FIVE_MINUTES = 300;
-       const MINUTE       = 60;
-       const INFINITE     = 0;
-
        /**
         * Lists all cache keys
         *
@@ -46,7 +53,7 @@ interface ICache
         *
         * @return bool
         */
-       public function set($key, $value, $ttl = self::FIVE_MINUTES);
+       public function set($key, $value, $ttl = Duration::FIVE_MINUTES);
 
        /**
         * Delete a key from the cache
@@ -64,4 +71,11 @@ interface ICache
         * @return bool
         */
        public function clear($outdated = true);
+
+       /**
+        * Returns the name of the current cache
+        *
+        * @return string
+        */
+       public function getName();
 }