您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

31 行
875B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\User;
  3. use App\Entity\User\UserMerchant;
  4. use Lc\CaracoleBundle\Context\MerchantContextTrait;
  5. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  6. use Lc\CaracoleBundle\Model\User\UserMerchantInterface;
  7. use Lc\SovBundle\Factory\AbstractFactory;
  8. use Lc\SovBundle\Model\User\UserInterface;
  9. class UserMerchantFactory extends AbstractFactory
  10. {
  11. public function createBase(MerchantInterface $merchant): UserMerchantInterface
  12. {
  13. $userMerchant = new UserMerchant();
  14. $userMerchant->setMerchant($merchant);
  15. return $userMerchant;
  16. }
  17. // createUserMerchant
  18. public function create(MerchantInterface $merchant, UserInterface $user = null): UserMerchantInterface
  19. {
  20. $userMerchant = $this->createBase($merchant);
  21. $userMerchant->setUser($user);
  22. return $userMerchant;
  23. }
  24. }