Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TicketStore.php 545B

il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
123456789101112131415161718192021
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Ticket;
  3. use Lc\CaracoleBundle\Repository\SectionStoreTrait;
  4. use Lc\CaracoleBundle\Repository\StoreTrait;
  5. use Lc\SovBundle\Repository\RepositoryQueryInterface;
  6. use Lc\SovBundle\Repository\Ticket\TicketStore as SovTicketStore;
  7. class TicketStore extends SovTicketStore
  8. {
  9. use StoreTrait;
  10. use SectionStoreTrait;
  11. public function filtersDefault(RepositoryQueryInterface $query): RepositoryQueryInterface
  12. {
  13. $query->filterBySection($this->section);
  14. return $query;
  15. }
  16. }