Skip to content

Commit

Permalink
fix: update out of date type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
lrosenfeldt committed Jul 31, 2024
1 parent 823b3ec commit 212d64e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public function setTerminalId(?string $terminalId): self
return $this;
}

public function getCardAcceptorId(): string
public function getCardAcceptorId(): ?string
{
return $this->cardAcceptorId;
}
Expand All @@ -206,7 +206,7 @@ public function setCardAcceptorId(string $cardAcceptorId): self
return $this;
}

public function getMerchantReference(): string
public function getMerchantReference(): ?string
{
return $this->merchantReference;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function __construct(
}

// Getters and Setters
public function getBankAccountIban(): BankAccountInformation
public function getBankAccountIban(): ?BankAccountInformation
{
return $this->bankAccountIban;
}
Expand All @@ -67,7 +67,7 @@ public function setBankAccountIban(BankAccountInformation $bankAccountIban): sel
return $this;
}

public function getRecurrenceType(): MandateRecurrenceType
public function getRecurrenceType(): ?MandateRecurrenceType
{
return $this->recurrenceType;
}
Expand All @@ -78,7 +78,7 @@ public function setRecurrenceType(MandateRecurrenceType $recurrenceType): self
return $this;
}

public function getUniqueMandateReference(): string
public function getUniqueMandateReference(): ?string
{
return $this->uniqueMandateReference;
}
Expand All @@ -89,7 +89,7 @@ public function setUniqueMandateReference(string $uniqueMandateReference): self
return $this;
}

public function getDateOfSignature(): string
public function getDateOfSignature(): ?string
{
return $this->dateOfSignature;
}
Expand All @@ -100,7 +100,7 @@ public function setDateOfSignature(string $dateOfSignature): self
return $this;
}

public function getCreditorId(): string
public function getCreditorId(): ?string
{
return $this->creditorId;
}
Expand Down

0 comments on commit 212d64e

Please sign in to comment.