#!/usr/bin/env php <?php /** * Remove all items from the cache */ require __DIR__ . '/../lib/bootstrap.php'; require __DIR__ . '/../lib/config.php'; $container = require __DIR__ . '/../lib/dependencies.php'; /** @var CacheInterface $cache */ $cache = $container['cache']; $cache->clear();