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.

34 lines
832B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\User;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Lc\CaracoleBundle\Doctrine\Extension\FilterMerchantInterface;
  5. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  6. use Lc\SovBundle\Model\User\GroupUserModel as SovGroupUserModel;
  7. /**
  8. * @ORM\MappedSuperclass()
  9. */
  10. abstract class GroupUserModel extends SovGroupUserModel implements FilterMerchantInterface
  11. {
  12. /**
  13. * @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Merchant\MerchantInterface", inversedBy="groupUsers")
  14. * @ORM\JoinColumn(nullable=false)
  15. */
  16. protected $merchant;
  17. public function getMerchant(): MerchantInterface
  18. {
  19. return $this->merchant;
  20. }
  21. public function setMerchant(MerchantInterface $merchant): self
  22. {
  23. $this->merchant = $merchant;
  24. return $this;
  25. }
  26. }