Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

MerchantSettingFactory.php 803B

il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Setting;
  3. use App\Entity\Setting\MerchantSetting;
  4. use Lc\CaracoleBundle\Context\MerchantContextTrait;
  5. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. use Lc\SovBundle\Model\File\FileInterface;
  8. class MerchantSettingFactory extends AbstractFactory
  9. {
  10. public function create(MerchantInterface $merchant, string $name, string $text = null, \DateTime $date = null, FileInterface $file = null)
  11. {
  12. $merchantSetting = new MerchantSetting();
  13. $merchantSetting->setMerchant($merchant);
  14. $merchantSetting->setName($name);
  15. $merchantSetting->setText($text);
  16. $merchantSetting->setDate($date);
  17. $merchantSetting->setFile($file);
  18. return $merchantSetting;
  19. }
  20. }