You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
701B

  1. <?php
  2. namespace Lc\CaracoleBundle\Controller\Ticket;
  3. use Lc\CaracoleBundle\Controller\AdminControllerTrait;
  4. use Lc\CaracoleBundle\Resolver\MerchantResolver;
  5. use Lc\SovBundle\Container\Ticket\TicketContainer;
  6. use Lc\SovBundle\Controller\Ticket\TicketAdminController as SovTicketAdminController;
  7. use Lc\CaracoleBundle\Factory\Ticket\TicketFactory;
  8. class TicketAdminController extends SovTicketAdminController
  9. {
  10. use AdminControllerTrait;
  11. public function createEntity(string $entityFqcn)
  12. {
  13. return $this->get(TicketContainer::class)
  14. ->getFactory()
  15. ->setMerchant($this->get(MerchantResolver::class)->getCurrent())
  16. ->create();
  17. }
  18. }