Total Complexity | 5 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class ExportContactObserver implements ObserverInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var ConfigHelper |
||
22 | */ |
||
23 | private $configHelper; |
||
24 | |||
25 | /** |
||
26 | * @var PublisherInterface |
||
27 | */ |
||
28 | private $publisher; |
||
29 | |||
30 | /** |
||
31 | * @param ConfigHelper $configHelper |
||
32 | * @param PublisherInterface $publisher |
||
33 | */ |
||
34 | public function __construct( |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * @inheritDoc |
||
44 | */ |
||
45 | public function execute(Observer $observer) |
||
64 |