Пример #1
0
 /**
  * Returns the ranks associated with the stats
  *
  * @return RankCollection
  */
 public function getRanks()
 {
     if ($this->rankCollection === null) {
         $this->rankCollection = RankCollection::factory(parent::getRanks());
     }
     return $this->rankCollection;
 }