Viewing File: /home/maglabs/it/app/code/Magento/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();
}
Back to Directory
File Manager