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