You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
843B

  1. <?php
  2. namespace Lc\ShopBundle\Repository;
  3. use App\Entity\DocumentInvoice;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Common\Persistence\ManagerRegistry;
  6. use Lc\ShopBundle\Context\DefaultRepositoryInterface;
  7. use Lc\ShopBundle\Context\DocumentInvoiceInterface;
  8. /**
  9. * @method DocumentInvoice|null find($id, $lockMode = null, $lockVersion = null)
  10. * @method DocumentInvoice|null findOneBy(array $criteria, array $orderBy = null)
  11. * @method DocumentInvoice[] findAll()
  12. * @method DocumentInvoice[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  13. */
  14. class DocumentInvoiceRepository extends BaseRepository implements DefaultRepositoryInterface
  15. {
  16. public function getInterfaceClass()
  17. {
  18. return DocumentInvoiceInterface::class;
  19. }
  20. }