Example #1
0
 /**
  * Add books
  *
  * @param \AppBundle\Entity\Book $book
  * @return Reader
  */
 public function addBook(\AppBundle\Entity\Book $book)
 {
     $book->addReader($this);
     $this->books[] = $book;
     return $this;
 }