Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit b984c180 authored by Nicolas's avatar Nicolas
Browse files

Création de l'observer

parent 2c110460
No related branches found
No related tags found
No related merge requests found
<?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.
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment