|
1234567891011121314151617 |
- <?php
-
- namespace Lc\CaracoleBundle\Repository;
-
- trait StoreTrait
- {
- public function resetContext(): void
- {
- if(method_exists($this, 'setMerchant')) {
- $this->setMerchant(null);
- }
-
- if(method_exists($this, 'setSection')) {
- $this->setSection(null);
- }
- }
- }
|