Example #1
0
 /**
  * Add Commentaires
  * 
  * @param Serialken\BlogBundle\Entity\Commentaire $commentaire
  */
 public function addCommentaire(\Serialken\BlogBundle\Entity\Commentaire $commentaire)
 {
     $this->commentaires[] = $commentaire;
     //on lie larticle au commentaire
     //pour plutard pouvoir recupere lobjet article a partir du commentaire
     $commentaire->setArticle($this);
     return $this;
 }