for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace AppBuilder\Event\Application;
use AppBuilder\Application\Model\ValueObject\Ticket;
use Symfony\Component\EventDispatcher\Event;
class FullTicketBuiltEvent extends Event
{
/** @var string */
public const NAME = 'full.ticket.built';
/** @var Ticket */
private $ticket;
public function __construct(Ticket $ticket)
$this->ticket = $ticket;
}
public function ticket() : Ticket
return $this->ticket;