選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

UserPointSaleRepository.php 711B

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