Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

22 lines
700B

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