mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 17:52:13 +01:00
21 lines
422 B
PHP
21 lines
422 B
PHP
<?php
|
|
|
|
namespace AppBundle\Event\Model;
|
|
|
|
use AppBundle\Event\Model\EventStats\DailyStats;
|
|
use AppBundle\Event\Model\EventStats\TicketTypeStats;
|
|
|
|
class EventStats
|
|
{
|
|
public $firstDay;
|
|
public $secondDay;
|
|
public $ticketType;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->firstDay = new DailyStats();
|
|
$this->secondDay = new DailyStats();
|
|
$this->ticketType = new TicketTypeStats();
|
|
}
|
|
}
|