|
123456789101112131415 |
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Merchant;
-
- use App\Entity\Merchant\Merchant;
- use Doctrine\Persistence\ManagerRegistry;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- class MerchantRepository extends AbstractRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, Merchant::class);
- }
- }
|