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