예제 #1
0
 /**
  * @return Book
  */
 public function getBook()
 {
     $book = null;
     if ($this->chapter && $this->chapter->getBook()) {
         $book = $this->chapter->getBook();
     }
     return $book;
 }