Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

DocumentFactory.php 482B

3 år sedan
3 år sedan
1234567891011121314151617181920212223
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\File;
  3. use App\Entity\File\Document;
  4. use Lc\CaracoleBundle\Factory\MerchantFactoryTrait;
  5. use Lc\CaracoleBundle\Model\File\DocumentInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. class DocumentFactory extends AbstractFactory
  8. {
  9. use MerchantFactoryTrait;
  10. public function create(): DocumentInterface
  11. {
  12. $document = new Document();
  13. $document->setMerchant($this->merchant);
  14. return $document;
  15. }
  16. }