setName("image-cache:clear") ->setDescription("Empty part or whole web space image cache") ->addArgument("subdir", InputArgument::OPTIONAL, "Clear only the specified subdirectory") ; } protected function execute(InputInterface $input, OutputInterface $output) { $dispatcher = $this->getContainer()->get('event_dispatcher'); $request = new Request(); try { $event = new ImageEvent($request); $subdir = $input->getArgument('subdir'); if (! is_null($subdir)) $event->setCacheSubdirectory($subdir); $dispatcher->dispatch(TheliaEvents::IMAGE_CLEAR_CACHE, $event); $output->writeln(sprintf('%s image cache successfully cleared.', is_null($subdir) ? 'Entire' : ucfirst($subdir))); } catch (\Exception $ex) { $output->writeln(sprintf("Failed to clear image cache: %s", $ex->getMessage())); } } }