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

16 行
339B

  1. <?php
  2. namespace common\logic\PointSale\UserPointSale;
  3. use common\logic\BaseService;
  4. use common\logic\BuilderInterface;
  5. class UserPointSaleBuilder extends BaseService implements BuilderInterface
  6. {
  7. public function instanciate(): UserPointSale
  8. {
  9. $userPointSale = new UserPointSale();
  10. return $userPointSale;
  11. }
  12. }