DIR:/home/austenwhite.co.uk/www/dev/vendor/magento/module-customer/ViewModel/ |
Current File : /home/austenwhite.co.uk/www/dev/vendor/magento/module-customer/ViewModel/CreateAccountButton.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; /** * Custom Create Account button view model */ class CreateAccountButton implements ArgumentInterface { /** * If Create Account button should be disabled * * @return bool */ public function disabled(): bool { return false; } } |