Example #1
0
 public function jsonSerialize()
 {
     return ['id' => $this->id, 'name' => $this->name, 'activityCount' => $this->activityCount, 'minActivityCount' => $this->minActivityCount, 'levelName' => $this->level ? $this->level->getName() : null, 'levelValue' => $this->level ? $this->level->getValue() : null];
 }
 /**
  * @param Level $level
  */
 public function setLevel(Level $level)
 {
     $this->level = $level;
     $this->levelName = $level->getName();
 }