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