Esempio n. 1
0
File: book.php Progetto: ha-y/cops
 public function getPublisher()
 {
     if (is_null($this->publisher)) {
         $this->publisher = Publisher::getPublisherByBookId($this->id);
     }
     return $this->publisher;
 }