Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

UserMerchantRepository.php 687B

12345678910111213141516171819202122
  1. <?php
  2. namespace Lc\ShopBundle\Repository;
  3. use App\Entity\UserMerchant;
  4. use Lc\ShopBundle\Context\DefaultRepositoryInterface;
  5. use Lc\ShopBundle\Repository\BaseRepository;
  6. /**
  7. * @method UserMerchant|null find($id, $lockMode = null, $lockVersion = null)
  8. * @method UserMerchant|null findOneBy(array $criteria, array $orderBy = null)
  9. * @method UserMerchant[] findAll()
  10. * @method UserMerchant[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  11. */
  12. class UserMerchantRepository extends BaseRepository implements DefaultRepositoryInterface
  13. {
  14. public function getInterfaceClass()
  15. {
  16. return UserMerchant::class;
  17. }
  18. }