No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

23 líneas
671B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\User;
  3. use Lc\CaracoleBundle\Model\User\UserPointSaleInterface;
  4. use Lc\SovBundle\Repository\AbstractRepository;
  5. /**
  6. * @method UserPointSaleInterface|null find($id, $lockMode = null, $lockVersion = null)
  7. * @method UserPointSaleInterface|null findOneBy(array $criteria, array $orderBy = null)
  8. * @method UserPointSaleInterface[] findAll()
  9. * @method UserPointSaleInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  10. */
  11. class UserPointSaleRepository extends AbstractRepository
  12. {
  13. public function getInterfaceClass()
  14. {
  15. return UserPointSaleInterface::class;
  16. }
  17. }