Skip to content

Commit

Permalink
Fix incorrect return type in TicketPriceDomainObject
Browse files Browse the repository at this point in the history
  • Loading branch information
daveearley committed Aug 31, 2024
1 parent ee43711 commit eea172b
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 eea172b

Please sign in to comment.