Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

TicketStore.php 620B

před 3 roky
před 3 roky
123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Reminder;
  3. use Lc\SovBundle\Repository\Reminder\ReminderStore as SovReminderStore;
  4. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  5. class TicketStore extends SovReminderStore
  6. {
  7. protected MerchantInterface $merchant;
  8. public function setMerchant(MerchantInterface $merchant)
  9. {
  10. $this->merchant = $merchant;
  11. }
  12. public function getFoo($query = null)
  13. {
  14. $query = $this->query->create();
  15. if ($this->merchant) {
  16. $query->filterByMerchant($this->merchant);
  17. }
  18. return parent::getFoo($query);
  19. }
  20. }