You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace Lc\CaracoleBundle\Factory\File;
-
- use App\Entity\File\Document;
- use Lc\CaracoleBundle\Factory\MerchantFactoryTrait;
- use Lc\CaracoleBundle\Model\File\DocumentInterface;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class DocumentFactory extends AbstractFactory implements DocumentFactoryInterface
- {
- use MerchantFactoryTrait;
-
- public function create(): DocumentInterface
- {
- $document = new Document();
-
- $document->setMerchant($this->merchant);
-
- return $document;
- }
-
- }
|