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.

DocumentQuotationRepository.php 859B

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