diff --git a/DataStorage/Cache/CachePool.php b/DataStorage/Cache/CachePool.php index e0476b34e..697c39a1f 100644 --- a/DataStorage/Cache/CachePool.php +++ b/DataStorage/Cache/CachePool.php @@ -112,10 +112,10 @@ class CachePool implements OptionsInterface * @since 1.0.0 * @author Dennis Eichhorn */ - public function get(string $key) + public function get(string $key) /* : ?CacheInterface */ { if (!isset($this->pool[$key])) { - return false; + return null; } return $this->pool[$key];