You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AddressRepository.php 463B

3 anni fa
3 anni fa
3 anni fa
3 anni fa
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. }