diff --git a/Observer/CustomerRegisterSuccess.php b/Observer/CustomerRegisterSuccess.php new file mode 100644 index 0000000000000000000000000000000000000000..15f7afe5b186026a092e5c1b202eca7509f7bfdf --- /dev/null +++ b/Observer/CustomerRegisterSuccess.php @@ -0,0 +1,30 @@ +<?php +namespace NicolasBejean\Customer\Observer; + +use Magento\Framework\Event\Observer; +use Magento\Framework\Event\ObserverInterface; + +/** + * Class CustomerRegisterSuccess + * + * @category PHP + * @package NicolasBejean\Customer\Observer + * @author Nicolas Béjean <nicolas@bejean.eu> + * @license https://github.com/nicolasbejean/customer/blob/master/licence.txt BSD Licence + * @link https://www.bejean.eu + */ +class CustomerRegisterSuccess implements ObserverInterface +{ + /** + * CustomerRegisterSuccess constructor. + */ + public function __construct() + { + + } + + public function execute(Observer $observer) + { + // TODO: Implement execute() method. + } +}