Allow data pass to entities

[PREMIUM-142]
This commit is contained in:
Pavel Dohnal
2020-05-06 14:53:36 +02:00
committed by Veljko V
parent 0583e84b15
commit ea06c2a27b
4 changed files with 75 additions and 11 deletions

View File

@@ -111,4 +111,11 @@ class StatisticsWooCommercePurchaseEntity {
public function getOrderId() {
return $this->orderId;
}
/**
* @param SubscriberEntity|null $subscriber
*/
public function setSubscriber($subscriber) {
$this->subscriber = $subscriber;
}
}