Exemplo n.º 1
0
 /**
  * Add reviews
  *
  * @param \AppBundle\Entity\Review $review
  * @return Reader
  */
 public function addReview(\AppBundle\Entity\Review $review)
 {
     $review->addReader($this);
     $this->reviews[] = $review;
     return $this;
 }