選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
340B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository;
  3. trait StoreTrait
  4. {
  5. public function resetContext(): self
  6. {
  7. if(method_exists($this, 'setMerchant')) {
  8. $this->setMerchant(null);
  9. }
  10. if(method_exists($this, 'setSection')) {
  11. $this->setSection(null);
  12. }
  13. return $this;
  14. }
  15. }