Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

24 lines
727B

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