]> git.mxchange.org Git - friendica.git/commitdiff
Add transitive type hints in Core\PConfig
authorHypolite Petovan <hypolite@mrpetovan.com>
Tue, 16 Jul 2019 11:45:24 +0000 (07:45 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Tue, 16 Jul 2019 11:45:24 +0000 (07:45 -0400)
src/Core/PConfig.php

index 99f0c8320e7af1cffa2006a463a6daf524b28232..49e34720f55aa47785b900214a6e5fe5ce37808e 100644 (file)
@@ -40,7 +40,7 @@ class PConfig
         *
         * @return void
         */
-       public static function load(int $uid, $cat)
+       public static function load(int $uid, string $cat)
        {
                self::$config->load($uid, $cat);
        }
@@ -57,7 +57,7 @@ class PConfig
         *
         * @return mixed Stored value or null if it does not exist
         */
-       public static function get(int $uid, $cat, $key, $default_value = null, $refresh = false)
+       public static function get(int $uid, string $cat, string $key, $default_value = null, bool $refresh = false)
        {
                return self::$config->get($uid, $cat, $key, $default_value, $refresh);
        }
@@ -72,7 +72,7 @@ class PConfig
         *
         * @return bool Operation success
         */
-       public static function set(int $uid, $cat, $key, $value)
+       public static function set(int $uid, string $cat, string $key, $value)
        {
                return self::$config->set($uid, $cat, $key, $value);
        }
@@ -86,7 +86,7 @@ class PConfig
         *
         * @return bool
         */
-       public static function delete(int $uid, $cat, $key)
+       public static function delete(int $uid, string $cat, string $key)
        {
                return self::$config->delete($uid, $cat, $key);
        }