/**
  * Removes all redirects
  *
  * This command deletes all redirects from the RedirectRepository
  *
  * @return void
  */
 public function removeAllCommand()
 {
     $this->redirectStorage->removeAll();
     $this->outputLine('Removed all redirects');
 }