Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-customer/ViewModel/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-customer/ViewModel/ForgotPasswordButton.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Customer\ViewModel;

use Magento\Framework\View\Element\Block\ArgumentInterface;

/**
 * Forgot password button view model
 */
class ForgotPasswordButton implements ArgumentInterface
{
    /**
     * If Forgot password button should be disabled
     *
     * @return bool
     */
    public function disabled(): bool
    {
        return false;
    }
}