- <?php
-
- namespace common\logic\Document\Quotation;
-
- use common\logic\BaseService;
- use common\logic\BuilderInterface;
-
- class QuotationBuilder extends BaseService implements BuilderInterface
- {
- public function instanciate(): Quotation
- {
- $quotation = new Quotation();
-
- return $quotation;
- }
- }
|