|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\User;
-
- use Lc\CaracoleBundle\Model\User\VisitorInterface;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- /**
- * @method VisitorInterface|null find($id, $lockMode = null, $lockVersion = null)
- * @method VisitorInterface|null findOneBy(array $criteria, array $orderBy = null)
- * @method VisitorInterface[] findAll()
- * @method VisitorInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
- */
- class VisitorRepository extends AbstractRepository
- {
- public function getInterfaceClass()
- {
- return VisitorInterface::class;
- }
-
-
- }
|