Skip to content

Commit

Permalink
Merge pull request #1 from HiEventsDev/develop
Browse files Browse the repository at this point in the history
Fix incorrect return type in TicketPriceDomainObject
  • Loading branch information
yonix06 authored Sep 1, 2024
2 parents e77d2e1 + eea172b commit cb5562d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/DomainObjects/TicketPriceDomainObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function setIsAvailable(?bool $isAvailable): TicketPriceDomainObject
return $this;
}

public function setOffSaleReason(?string $offSaleReason): TicketDomainObject
public function setOffSaleReason(?string $offSaleReason): TicketPriceDomainObject
{
$this->offSaleReason = $offSaleReason;

Expand Down

0 comments on commit cb5562d

Please sign in to comment.