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.

DocumentFactory.php 482B

3 years ago
3 years ago
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. }