]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Config/Cache/IPConfigCache.php
Merge pull request #6920 from nupplaphil/feature/basepath/hostname_config
[friendica.git] / src / Core / Config / Cache / IPConfigCache.php
index 4ac21481a15180bff68ef3a832db56bfdfaee030..30076a2a9302db8712df0546ad098980fa40dd15 100644 (file)
@@ -23,7 +23,7 @@ interface IPConfigCache
         * @param string $cat     Config category
         * @param string $key     Config key
         *
-        * @return string The value of the config entry or '!<unset>!' if not set
+        * @return null|string The value of the config entry or null if not set
         */
        function getP($uid, $cat, $key = null);
 
@@ -50,17 +50,6 @@ interface IPConfigCache
         */
        function deleteP($uid, $cat, $key);
 
-
-       /**
-        * Checks if a value is set in the user config cache.
-        *
-        * @param int    $uid  User Id
-        * @param string $cat  Config category
-        * @param string $key  Config key
-        * @return bool
-        */
-       function hasP($uid, $cat, $key = null);
-
        /**
         * Returns the whole configuration cache
         *