23 lines
		
	
	
		
			586 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			586 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
namespace Magento\InstantPurchase\CustomerData;
 | 
						|
 | 
						|
use Magento\InstantPurchase\PaymentMethodIntegration\PaymentTokenFormatterInterface;
 | 
						|
use Magento\Vault\Api\Data\PaymentTokenInterface;
 | 
						|
 | 
						|
class StubPaymentTokenFormatter implements PaymentTokenFormatterInterface
 | 
						|
{
 | 
						|
    const VALUE = 'stub payment token formatting result';
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritDoc
 | 
						|
     */
 | 
						|
    public function formatPaymentToken(PaymentTokenInterface $paymentToken): string
 | 
						|
    {
 | 
						|
        return self::VALUE;
 | 
						|
    }
 | 
						|
}
 |