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

16 行
332B

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