Skip to content

Commit

Permalink
PAYOSWXP-116: notification-target entity: fix wrong php type
Browse files Browse the repository at this point in the history
  • Loading branch information
rommelfreddy committed Oct 16, 2023
1 parent d601e52 commit 7917d81
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class PayonePaymentNotificationTargetEntity extends Entity

protected bool $isBasicAuth = false;

protected string $txactions;
protected array $txactions;

protected ?string $username = null;

Expand All @@ -41,12 +41,12 @@ public function setIsBasicAuth(bool $isBasicAuth): void
$this->isBasicAuth = $isBasicAuth;
}

public function getTxactions(): string
public function getTxactions(): array
{
return $this->txactions;
}

public function setTxactions(string $txactions): void
public function setTxactions(array $txactions): void
{
$this->txactions = $txactions;
}
Expand Down

0 comments on commit 7917d81

Please sign in to comment.