Пример #1
0
 public function removePost(Post $post)
 {
     if (!$this->hasPost($post)) {
         throw new DomainException('Post is not exists');
     }
     $this->posts->removeElement($post);
 }
Пример #2
0
 /**
  * @param Post $post
  */
 public function removePost(Post $post)
 {
     $this->posts->removeElement($post);
 }
Пример #3
0
 /**
  * Remove comments
  *
  * @param \Workshop\Bundle\BackendBundle\Entity\Comment $comments
  */
 public function removeComment(\Workshop\Bundle\BackendBundle\Entity\Comment $comments)
 {
     $this->comments->removeElement($comments);
 }
Пример #4
0
 /**
  * Remove posts
  *
  * @param \Workshop\Bundle\BackendBundle\Entity\Post $posts
  */
 public function removePost(\Workshop\Bundle\BackendBundle\Entity\Post $posts)
 {
     $this->posts->removeElement($posts);
 }