예제 #1
0
파일: book.php 프로젝트: ha-y/cops
 public function getPublisher()
 {
     if (is_null($this->publisher)) {
         $this->publisher = Publisher::getPublisherByBookId($this->id);
     }
     return $this->publisher;
 }