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
CustomerRegisterSuccess.php 692 B
Newer Older
  • Learn to ignore specific revisions
  • Nicolas's avatar
    Nicolas committed
    <?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.
        }
    }