| Current Path : /home/rtorresani/www/vendor/magento/module-vault/Api/Data/ |
| Current File : //home/rtorresani/www/vendor/magento/module-vault/Api/Data/PaymentTokenInterfaceFactory.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Vault\Api\Data;
/**
* Interface PaymentTokenInterfaceFactory
* @deprecated 101.0.0
* @see PaymentTokenFactoryInterface
* @codingStandardsIgnoreStart
*/
interface PaymentTokenInterfaceFactory
// @codingStandardsIgnoreEnd
{
/**
* Create payment token entity
* @return PaymentTokenInterface
*/
public function create();
/**
* Return type of payment token
* @return string
*/
public function getType();
}