diff --git a/src/infrastructure/cache/PhutilKeyValueCacheStack.php b/src/infrastructure/cache/PhutilKeyValueCacheStack.php --- a/src/infrastructure/cache/PhutilKeyValueCacheStack.php +++ b/src/infrastructure/cache/PhutilKeyValueCacheStack.php @@ -113,6 +113,7 @@ foreach ($this->cachesBackward as $cache) { $cache->setKeys($keys, $ttl); } + return $this; } @@ -120,6 +121,7 @@ foreach ($this->cachesBackward as $cache) { $cache->deleteKeys($keys); } + return $this; } @@ -127,6 +129,7 @@ foreach ($this->cachesBackward as $cache) { $cache->destroyCache(); } + return $this; } }