aboutsummaryrefslogtreecommitdiff
path: root/bin/cache-clear
blob: 2ca84ce67746b46f79ca2d7d44b6228ceac327d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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();