register('GET', '/cache/clear', array($this, 'clear')); $this->cache = $cache; $this->responder = $responder; } public function clear(Request $request): Response { return $this->responder->success($this->cache->clear()); } }