From b984c180f2e97ab4047fdf8bb78b1cc146ea2de1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20B=C3=A9jean?= <nicolas@bejean.eu> Date: Sat, 30 May 2020 11:15:49 +0200 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9ation=20de=20l'observer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Observer/CustomerRegisterSuccess.php | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Observer/CustomerRegisterSuccess.php diff --git a/Observer/CustomerRegisterSuccess.php b/Observer/CustomerRegisterSuccess.php new file mode 100644 index 0000000..15f7afe --- /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. + } +} -- GitLab