|
- <?php
-
- namespace Lc\ShopBundle\Repository;
-
- use Lc\ShopBundle\Context\DefaultRepositoryInterface;
- use Lc\ShopBundle\Context\VisitorInterface;
-
- /**
- * @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 BaseRepository implements DefaultRepositoryInterface
- {
- public function getInterfaceClass()
- {
- return VisitorInterface::class;
- }
-
- }
|