Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

VisitorRepository.php 672B

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