您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

AddressRepository.php 463B

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