diff --git a/app/Entities/Customer/ServiceEntity.php b/app/Entities/Customer/ServiceEntity.php index 2aeca28..5b7bcad 100644 --- a/app/Entities/Customer/ServiceEntity.php +++ b/app/Entities/Customer/ServiceEntity.php @@ -19,7 +19,7 @@ class ServiceEntity extends CustomerEntity } final public function getServerEntity(): ServerEntity { - return $this->attributes['paymentEntity']; + return $this->attributes['serverEntity']; } final public function setPaymentEntity(PaymentEntity $entity): self { @@ -28,7 +28,7 @@ class ServiceEntity extends CustomerEntity } final public function getPaymentEntity(): PaymentEntity { - return $this->attributes['serverEntity']; + return $this->attributes['paymentEntity']; } final public function getUserUID(): string {