<?php namespace Lc\ShopBundle\Repository; use Lc\ShopBundle\Context\DefaultRepositoryInterface; use Lc\ShopBundle\Context\DocumentDeliveryNoteInterface; /** * @method DocumentDeliveryNoteInterface|null find($id, $lockMode = null, $lockVersion = null) * @method DocumentDeliveryNoteInterface|null findOneBy(array $criteria, array $orderBy = null) * @method DocumentDeliveryNoteInterface[] findAll() * @method DocumentDeliveryNoteInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class DocumentDeliveryNoteRepository extends BaseRepository implements DefaultRepositoryInterface { public function getInterfaceClass() { return DocumentDeliveryNoteInterface::class; } }