Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Reminder;
-
- use Lc\CaracoleBundle\Repository\MerchantStoreTrait;
- use Lc\CaracoleBundle\Repository\SectionStoreTrait;
- use Lc\CaracoleBundle\Repository\StoreTrait;
- use Lc\SovBundle\Repository\Reminder\ReminderStore as SovReminderStore;
- use Lc\SovBundle\Repository\RepositoryQueryInterface;
-
- class ReminderStore extends SovReminderStore
- {
- use StoreTrait;
- use SectionStoreTrait;
- use MerchantStoreTrait;
-
- public function filtersDefault(RepositoryQueryInterface $query): RepositoryQueryInterface
- {
- if ($this->merchant) {
- $query->filterByMerchant($this->merchant);
- }
-
- if ($this->section) {
- $query->filterBySection($this->section);
- }
-
- return parent::filtersDefault($query);
- }
- }
|