| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-vault/Model/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-vault/Model/AccountPaymentTokenFactory.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Vault\Model;
/**
* Class AccountPaymentTokenFactory
* @deprecated 101.0.0
* @see PaymentTokenFactoryInterface
*/
class AccountPaymentTokenFactory extends AbstractPaymentTokenFactory
{
/**
* @var string
*/
const TOKEN_TYPE_ACCOUNT = 'account';
/**
* @inheritdoc
*/
public function getType()
{
return self::TOKEN_TYPE_ACCOUNT;
}
}