|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\User;
-
- use Lc\CaracoleBundle\Model\User\UserMerchantInterface;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- /**
- * @method UserMerchantInterface|null find($id, $lockMode = null, $lockVersion = null)
- * @method UserMerchantInterface|null findOneBy(array $criteria, array $orderBy = null)
- * @method UserMerchantInterface[] findAll()
- * @method UserMerchantInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
- */
- class UserMerchantRepository extends AbstractRepository
- {
- public function getInterfaceClass()
- {
- return UserMerchantInterface::class;
- }
-
-
- }
|