*/ public array $logs = []; public function log(Ticket $ticket, string $step, string $status = 'info', ?string $message = null, array $context = []): void { $this->logs[] = [ 'step' => $step, 'status' => $status, 'message' => $message, 'context' => $context, ]; } }