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