Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
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. }