woocommerce-paypal-payments/modules/ppcp-api-client/src/Authentication/Bearer.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;
}