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.

MerchantContextTrait.php 310B

il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
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. }