cache = $cache; } /** * Execute the console command. * * @return void */ public function handle() { $this->cache->store($this->argument('store'))->forget( $this->argument('key') ); $this->info('The ['.$this->argument('key').'] key has been removed from the cache.'); } }