mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-08-04 03:40:45 +08:00
23 lines
409 B
PHP
23 lines
409 B
PHP
<?php
|
|
|
|
/**
|
|
* The bearer interface.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\ApiClient\Authentication
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\ApiClient\Authentication;
|
|
|
|
use WooCommerce\PayPalCommerce\ApiClient\Entity\Token;
|
|
/**
|
|
* Interface Bearer
|
|
*/
|
|
interface Bearer
|
|
{
|
|
/**
|
|
* Returns the bearer.
|
|
*
|
|
* @return Token
|
|
*/
|
|
public function bearer(): Token;
|
|
}
|