src/Invoice/Form/Dto/Factory/InvoiceItemFormDtoFactoryInterface.php line 26
<?phpdeclare(strict_types=1);/*** Copyright (c) 2020 TECLA Consulting Group oü.* All rights reserved.** This unpublished material is proprietary to TECLA Consulting Group oü.* All rights reserved. The methods and* techniques described herein are considered trade secrets* and/or confidential. Reproduction or distribution, in whole* or in part, is forbidden except by express written permission* of TECLA Consulting Group oü.** @author Matúš Sýkorjak <matus@tecla.no>* @copyright 2020 TECLA Consulting Group oü*/namespace App\Invoice\Form\Dto\Factory;use App\Invoice\Form\Dto\InvoiceItemFormDto;use App\Invoice\Model\InvoiceDraftItemInterface;interface InvoiceItemFormDtoFactoryInterface{public function create(string $description = null,int $quantity = null,int $unitPrice = null,int $vat = null): InvoiceItemFormDto;public function createFromDraftItem(InvoiceDraftItemInterface $item): InvoiceItemFormDto;}