8889841cOrderStatusChangePayload.php000064400000001067150514312660012163 0ustar00from = $from; $this->to = $to; } public function getFrom(): string { return $this->from; } public function getTo(): string { return $this->to; } } OrderPayload.php000064400000001124150514312660007643 0ustar00order = $order; } public function getOrder(): \WC_Order { return $this->order; } public function getEmail(): string { return $this->order->get_billing_email(); } public function getId(): int { return $this->order->get_id(); } } AbandonedCartPayload.php000064400000002033150514312660011255 0ustar00customer = $customer; $this->lastActivityAt = $lastActivityAt; $this->productIds = $productIds; } public function getLastActivityAt(): \DateTimeImmutable { return $this->lastActivityAt; } public function getCustomer(): \WC_Customer { return $this->customer; } /** * @return int[] */ public function getProductIds(): array { return $this->productIds; } } index.php000064400000000006150514312660006363 0ustar00customer = $customer; } public function getCustomer(): \WC_Customer { return $this->customer; } public function getId(): int { return $this->customer->get_id(); } }