| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class CustomerSaveAfterObserver implements ObserverInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var ConfigHelper |
||
| 20 | */ |
||
| 21 | private $configHelper; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var CreateUpdateContactService |
||
| 25 | */ |
||
| 26 | private $createUpdateContactService; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param ConfigHelper $configHelper |
||
| 30 | * @param CreateUpdateContactService $createUpdateContactService |
||
| 31 | */ |
||
| 32 | public function __construct( |
||
| 33 | ConfigHelper $configHelper, |
||
| 34 | CreateUpdateContactService $createUpdateContactService |
||
| 35 | ) { |
||
| 36 | $this->configHelper = $configHelper; |
||
| 37 | $this->createUpdateContactService = $createUpdateContactService; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param Observer $observer |
||
| 42 | */ |
||
| 43 | public function execute(Observer $observer) |
||
| 52 | } |
||
| 53 | } |
||
| 54 |