示例#1
0
文件: Stats.php 项目: janiv/shelf
 /**
  * Returns the rating entity associated with the stats
  *
  * @return Rating
  */
 public function getRating()
 {
     if ($this->ratingEntity === null) {
         $this->ratingEntity = Rating::factory(parent::getRating());
     }
     return $this->ratingEntity;
 }