您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

StoreTrait.php 340B

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