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

ReminderRepositoryQuery.php 419B

3年前
3年前
12345678910111213
  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. }