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