Example #1
0
 /**
  * Gives usual age of a race on his first great adventure - like 15 years for common human or 25 for hobbit.
  *
  * @param RacesTable $racesTable
  * @return int
  */
 public function getAge(RacesTable $racesTable)
 {
     /** @noinspection ExceptionsAnnotatingAndHandlingInspection */
     return $racesTable->getAge($this->getRaceCode(), $this->getSubraceCode());
 }