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 523B

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
1234567891011121314151617181920
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Ticket;
  3. use Lc\CaracoleBundle\Repository\SectionStoreTrait;
  4. use Lc\SovBundle\Model\User\UserInterface;
  5. use Lc\SovBundle\Repository\RepositoryQueryInterface;
  6. use Lc\SovBundle\Repository\Ticket\TicketStore as SovTicketStore;
  7. class TicketStore extends SovTicketStore
  8. {
  9. use SectionStoreTrait;
  10. public function filtersDefault(RepositoryQueryInterface $query): RepositoryQueryInterface
  11. {
  12. $query->filterBySection($this->section);
  13. return $query;
  14. }
  15. }