<?php namespace Lc\SovBundle\Factory\Ticket; use Lc\SovBundle\Model\Ticket\TicketInterface; interface TicketFactoryInterface { public function create(): TicketInterface; }