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

21 行
587B

  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. use common\logic\PointSale\UserPointSale\Service\UserPointSaleDefinition;
  7. /**
  8. * @mixin UserPointSaleDefinition
  9. * @mixin UserPointSaleRepository
  10. * @mixin UserPointSaleBuilder
  11. */
  12. class UserPointSaleManager extends AbstractManager
  13. {
  14. public function getContainerFqcn(): string
  15. {
  16. return UserPointSaleContainer::class;
  17. }
  18. }