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

19 行
479B

  1. <?php
  2. namespace common\logic\PointSale\UserPointSale\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\PointSale\UserPointSale\Repository\UserPointSaleRepository;
  5. use common\logic\PointSale\UserPointSale\Service\UserPointSaleBuilder;
  6. /**
  7. * @mixin UserPointSaleRepository
  8. * @mixin UserPointSaleBuilder
  9. */
  10. class UserPointSaleManager extends AbstractManager
  11. {
  12. public function getContainerFqcn(): string
  13. {
  14. return UserPointSaleContainer::class;
  15. }
  16. }