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.

PageStore.php 592B

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
123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Lc\SovBundle\Repository\Site;
  3. use Lc\SovBundle\Model\Site\PageInterface;
  4. use Lc\SovBundle\Repository\AbstractStore;
  5. class PageStore extends AbstractStore implements PageStoreInterface
  6. {
  7. protected PageRepositoryQueryInterface $query;
  8. public function __construct(PageRepositoryQueryInterface $query)
  9. {
  10. $this->query = $query;
  11. }
  12. //findPageBySlug
  13. public function getBySlug(string $slug): ?PageInterface
  14. {
  15. $query = $this->query->create();
  16. $query
  17. ->filterBySlug($slug);
  18. return $query->findOne();
  19. }
  20. }