title = $title; $this->score = $score; $this->label = $label; } /** * Serializes the score result to an array for ability output. * * @return array The serialized score result. */ public function to_array(): array { return [ 'title' => $this->title, 'score' => $this->score, 'label' => $this->label, ]; } }