選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

52 行
1.1KB

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Ticket;
  3. use Lc\CaracoleBundle\Repository\MerchantStoreTrait;
  4. use Lc\SovBundle\Repository\Ticket\TicketStore as SovTicketStore;
  5. class TicketStore extends SovTicketStore
  6. {
  7. use MerchantStoreTrait;
  8. public function getByUser($user, $query = null): array
  9. {
  10. if (is_null($query)) {
  11. $query = $this->query->create();
  12. }
  13. if ($this->merchant) {
  14. $query->filterByMerchant($this->merchant);
  15. }
  16. return parent::getByUser($user, $query);
  17. }
  18. public function getAllOpen(int $limit = 0, $query = null): array
  19. {
  20. if (is_null($query)) {
  21. $query = $this->query->create();
  22. }
  23. if ($this->merchant) {
  24. $query->filterByMerchant($this->merchant);
  25. }
  26. return parent::getAllOpen($limit, $query);
  27. }
  28. public function countAllOpen($query = null): string
  29. {
  30. if (is_null($query)) {
  31. $query = $this->query->create();
  32. }
  33. if ($this->merchant) {
  34. $query->filterByMerchant($this->merchant);
  35. }
  36. return parent::countAllOpen($query);
  37. }
  38. }