Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

21 rinda
596B

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