Skip to content

Commit

Permalink
Merge pull request #179 from HiEventsDev/develop
Browse files Browse the repository at this point in the history
Fix incorrect return type in TicketPriceDomainObject
  • Loading branch information
daveearley authored Aug 31, 2024
2 parents f4a8dfd + eea172b commit aa360d7
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 aa360d7

Please sign in to comment.