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.

MerchantContextTrait.php 310B

3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
1234567891011121314151617
  1. <?php
  2. namespace Lc\CaracoleBundle\Context;
  3. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  4. trait MerchantContextTrait
  5. {
  6. protected MerchantInterface $merchant;
  7. public function setMerchant(MerchantInterface $merchant)
  8. {
  9. $this->merchant = $merchant;
  10. return $this;
  11. }
  12. }