| Total Complexity | 4 | 
| Total Lines | 39 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 18 | class ExportCustomerObserver 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) | ||
| 60 |