Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

18 rindas
310B

  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. }