/**
  * Delete an InstagramCollection
  *
  * @param InstagramCollection $instagramCollection
  * @return void
  *
  */
 public function deleteInstagramCollectionAction(InstagramCollection $instagramCollection)
 {
     $this->instagramCollectionRepository->remove($instagramCollection);
     /*
     $this->addFlashMessage(sprintf('Collection "%s" has been deleted.', htmlspecialchars($instagramCollection->getTitle())));
     */
     $this->redirect('index');
 }