Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

NewsletterRepository.php 653B

4 лет назад
123456789101112131415161718192021
  1. <?php
  2. namespace Lc\ShopBundle\Repository;
  3. use App\Entity\News;
  4. use Lc\ShopBundle\Context\DefaultRepositoryInterface;
  5. use Lc\ShopBundle\Context\NewsletterInterface;
  6. /**
  7. * @method News|null find($id, $lockMode = null, $lockVersion = null)
  8. * @method News|null findOneBy(array $criteria, array $orderBy = null)
  9. * @method News[] findAll()
  10. * @method News[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  11. */
  12. class NewsletterRepository extends BaseRepository implements DefaultRepositoryInterface
  13. {
  14. public function getInterfaceClass()
  15. {
  16. return NewsletterInterface::class;
  17. }
  18. }