argument('path')); app(CacheManager::class)->delete($path); } /** * Get the console command arguments. * @return array */ protected function getArguments() { return [ ['path', InputArgument::REQUIRED, 'The path on the storage'], ]; } /** * Get the console command options. * @return array */ protected function getOptions() { return []; } }