From 03b94989f8a6ba478fa8507e69549933420ca00b Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Fri, 15 Feb 2019 16:05:03 +0300 Subject: [PATCH] Fixes #17109: Removed misleading line from Cache::getOrSet() phpdoc [skip ci] --- framework/caching/Cache.php | 1 - 1 file changed, 1 deletion(-) diff --git a/framework/caching/Cache.php b/framework/caching/Cache.php index e87519e022..1ce5a74a9e 100644 --- a/framework/caching/Cache.php +++ b/framework/caching/Cache.php @@ -577,7 +577,6 @@ abstract class Cache extends Component implements CacheInterface * @param mixed $key a key identifying the value to be cached. This can be a simple string or * a complex data structure consisting of factors representing the key. * @param callable|\Closure $callable the callable or closure that will be used to generate a value to be cached. - * In case $callable returns `false`, the value will not be cached. * @param int $duration default duration in seconds before the cache will expire. If not set, * [[defaultDuration]] value will be used. * @param Dependency $dependency dependency of the cached item. If the dependency changes,