From 36d98aed10b171a28a5fb30b626be6b433f86063 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Fri, 14 Dec 2018 21:29:16 +0300 Subject: [PATCH] Fixes #256: removed misleading line from phpdoc [skip ci] --- src/StateStorageInterface.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/StateStorageInterface.php b/src/StateStorageInterface.php index 20fb3cb..c4e111f 100644 --- a/src/StateStorageInterface.php +++ b/src/StateStorageInterface.php @@ -30,7 +30,6 @@ public function set($key, $value); /** * Returns the state variable value with the variable name. - * If the variable does not exist, the `$defaultValue` will be returned. * @param string $key the variable name * @return mixed the variable value, or `null` if the variable does not exist. */ @@ -42,4 +41,4 @@ public function get($key); * @return bool success. */ public function remove($key); -} \ No newline at end of file +}