$this->file_path, 'line' => $this->line_number, 'type' => $this->rule_id, 'message' => $this->message, 'resolution' => $this->suggestion, 'code' => $this->code_snippet, 'severity' => $this->severity, ]; } public function get_severity_weight(): int { return match($this->severity) { 'critical' => 4, 'high' => 3, 'medium' => 2, 'low' => 1, 'convention' => 0, default => 2, }; } }