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ů.

14 lines
419B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Reminder;
  3. use Lc\CaracoleBundle\Repository\MerchantRepositoryQueryTrait;
  4. use Lc\CaracoleBundle\Repository\SectionRepositoryQueryTrait;
  5. use Lc\SovBundle\Repository\Reminder\ReminderRepositoryQuery as SovReminderRepositoryQuery;
  6. class ReminderRepositoryQuery extends SovReminderRepositoryQuery
  7. {
  8. use MerchantRepositoryQueryTrait;
  9. use SectionRepositoryQueryTrait;
  10. }