$this->rule_id, 'table' => $this->table, 'column' => $this->column, 'message' => $this->message, 'recommendation' => $this->recommendation, 'severity' => $this->severity, ]; } public function format_output(): string { $output = " ❌ [{$this->rule_id}] Table: {$this->table}"; if ($this->column) { $output .= ", Column: {$this->column}"; } $output .= "\n {$this->message}\n"; $output .= " 💡 {$this->recommendation}\n"; return $output; } }