diff options
author | 2024-08-30 02:44:50 +0200 | |
---|---|---|
committer | 2024-08-30 02:44:50 +0200 | |
commit | bb2f471a03211a2ebe53de67c14bc3ef97803715 (patch) | |
tree | aeed200bfcac7989e4b327a9c811832a33cfe65e /bin/cache-clear | |
parent | 3e1a8b29d95fe7fc0120e813ab623720ae056b8b (diff) | |
download | rss-bridge-bb2f471a03211a2ebe53de67c14bc3ef97803715.tar.gz rss-bridge-bb2f471a03211a2ebe53de67c14bc3ef97803715.tar.zst rss-bridge-bb2f471a03211a2ebe53de67c14bc3ef97803715.zip |
fix: bug in prior fix (#4243)
Have to tweak the config BEFORE instantiating of course
Diffstat (limited to 'bin/cache-clear')
-rwxr-xr-x | bin/cache-clear | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/cache-clear b/bin/cache-clear index c8f53122..2ca84ce6 100755 --- a/bin/cache-clear +++ b/bin/cache-clear @@ -10,6 +10,7 @@ require __DIR__ . '/../lib/config.php'; $container = require __DIR__ . '/../lib/dependencies.php'; +/** @var CacheInterface $cache */ $cache = $container['cache']; $cache->clear(); |