Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- namespace Lc\CaracoleBundle\Factory\File;
-
- use Lc\CaracoleBundle\Container\File\DocumentContainer;
- use Lc\CaracoleBundle\Model\File\DocumentInterface;
- use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class DocumentFactory extends AbstractFactory
- {
-
- public function create(MerchantInterface $merchant, string $type): DocumentInterface
- {
- $class = DocumentContainer::getEntityFqcn();
- $document = new $class;
-
- $document->setMerchant($merchant);
- $document->setType($type);
- $document->setTitle('');
- $document->setStatus(1);
-
- return $document;
- }
-
- }
|