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

19 行
463B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Address;
  3. use App\Entity\Address\Address;
  4. use Doctrine\Persistence\ManagerRegistry;
  5. use Lc\CaracoleBundle\Repository\MerchantRepositoryQueryTrait;
  6. use Lc\SovBundle\Repository\AbstractRepository;
  7. class AddressRepository extends AbstractRepository
  8. {
  9. use MerchantRepositoryQueryTrait;
  10. public function __construct(ManagerRegistry $registry)
  11. {
  12. parent::__construct($registry, Address::class);
  13. }
  14. }