private function subscribeShow($showId)
 {
     $show = $this->dm->getRepository('AppBundle:AbstractShow')->find($showId);
     if (!$show) {
         return 'Сериал не найден';
     }
     if ($this->user->getSubscribedShows()->contains($show)) {
         return 'Вы уже подписаны на этот сериал';
     } else {
         $this->user->addSubscribedShow($show);
         $this->dm->flush();
         return 'Вы подписались на сериал ' . $show->getTitle();
     }
 }