Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- namespace Lc\CaracoleBundle\Repository;
-
- trait StoreTrait
- {
- public function resetContext(): self
- {
- if(method_exists($this, 'setMerchant')) {
- $this->setMerchant(null);
- }
-
- if(method_exists($this, 'setSection')) {
- $this->setSection(null);
- }
- return $this;
- }
- }
|