File: /var/www/vhost/disk-apps/qas.sports-crowd.com/app/Core/Ticket/Entities/TicketNotification.php
<?php
declare(strict_types=1);
namespace App\Core\Ticket\Entities;
class TicketNotification
{
private $totalTickets;
private $ticketType;
private $zoneTickets;
private $eventTickets;
public function __construct(
int $totalTickets,
string $ticketType,
string $zoneTickets,
string $eventTickets
) {
$this->totalTickets = $totalTickets;
$this->ticketType = $ticketType;
$this->zoneTickets = $zoneTickets;
$this->eventTickets = $eventTickets;
}
public function totalTickets(): int
{
return $this->totalTickets;
}
public function ticketType(): string
{
return $this->ticketType;
}
public function zoneTickets(): string
{
return $this->zoneTickets;
}
public function eventTickets(): string
{
return $this->eventTickets;
}
}