Your IP : 216.73.217.95


Current Path : /var/www/www.indacotrentino.com/www/app/code/Amasty/Rewards/Model/Customer/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/app/code/Amasty/Rewards/Model/Customer/NewCustomerRegistry.php

<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
 * @package Reward Points Base for Magento 2
 */

namespace Amasty\Rewards\Model\Customer;

class NewCustomerRegistry
{
    /**
     * @var string
     */
    private $newCustomerEmail = '';

    public function isNewCustomer($email)
    {
        return $this->newCustomerEmail === $email;
    }

    public function setNewCustomerEmail($email)
    {
        $this->newCustomerEmail = $email;
    }
}