'array', ]; public function issue(): BelongsTo { return $this->belongsTo(Issue::class); } public function toMcpContext(): array { return [ 'id' => $this->id, 'author' => $this->author, 'body' => $this->body, 'metadata' => $this->metadata, 'created_at' => $this->created_at?->toIso8601String(), ]; } }