- <?php
-
- namespace Lc\ShopBundle\Repository;
-
- use App\Entity\UserMerchant;
- use Lc\ShopBundle\Context\DefaultRepositoryInterface;
- use Lc\ShopBundle\Repository\BaseRepository;
-
-
- class UserMerchantRepository extends BaseRepository implements DefaultRepositoryInterface
- {
- public function getInterfaceClass()
- {
- return UserMerchant::class;
- }
- }
|