<?php namespace common\logic\Document\DeliveryNote; use common\logic\BaseService; use common\logic\BuilderInterface; class DeliveryNoteBuilder extends BaseService implements BuilderInterface { public function instanciate(): DeliveryNote { $deliveryNote = new DeliveryNote(); return $deliveryNote; } }