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

15 行
242B

  1. <?php
  2. namespace domain\Config\TaxRate;
  3. use domain\_\AbstractBuilder;
  4. class TaxRateBuilder extends AbstractBuilder
  5. {
  6. public function instanciateTaxRate(): TaxRate
  7. {
  8. $taxRate = new TaxRate();
  9. return $taxRate;
  10. }
  11. }