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