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.

NewsStore.php 492B

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
12345678910111213141516171819
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Site;
  3. use Lc\CaracoleBundle\Repository\SectionStoreTrait;
  4. use Lc\SovBundle\Repository\RepositoryQueryInterface;
  5. use Lc\SovBundle\Repository\Site\NewsStore as SovNewsStore;
  6. class NewsStore extends SovNewsStore
  7. {
  8. use SectionStoreTrait;
  9. public function filtersDefault(RepositoryQueryInterface $query): RepositoryQueryInterface
  10. {
  11. $query->filterBySection($this->section);
  12. return parent::filtersDefault($query);
  13. }
  14. }