コード例 #1
0
ファイル: book.php プロジェクト: ha-y/cops
 public function getPublisher()
 {
     if (is_null($this->publisher)) {
         $this->publisher = Publisher::getPublisherByBookId($this->id);
     }
     return $this->publisher;
 }