name = $name; $this->slots = []; } public function addSlot($slot) { $this->slots[] = $slot; } public function getName() { return $this->name; } public function getSlots() { return $this->slots; } static function compare(Choice $a, Choice $b) { return strcmp($a->name, $b->name); } }