1234567891011121314151617181920212223242526272829 |
- <?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();
- }
|