subscription = $subscription; $this->order = $order; $this->customer = $customer; $this->oldStatus = $oldStatus; } public function toArray(): array { return [ 'subscription' => $this->subscription, 'order' => $this->order, 'customer' => $this->customer ?? [], 'old_status' => $this->oldStatus, ]; } public function getActivityEventModel() { return $this->subscription; } }