automation = $automation; } /** * Plugin for create function. * * @param \Magento\Sales\Api\OrderCustomerManagementInterface $subject * @param mixed $customer * @return mixed * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function afterCreate(\Magento\Sales\Api\OrderCustomerManagementInterface $subject, $customer) { //New Automation enrolment to queue $this->automation->newCustomerAutomation($customer); return $customer; } }