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.
|
- <?php
-
- namespace Lc\CaracoleBundle\Repository;
-
- use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
-
- trait MerchantStoreTrait
- {
- protected MerchantInterface $merchant;
-
- public function setMerchant(MerchantInterface $merchant):self
- {
- $this->merchant = $merchant;
-
- return $this;
- }
- }
|