File "EndpointInterface.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-button/src/Endpoint/EndpointInterface.php
File size: 480 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* The Endpoint interface.
*
* @package WooCommerce\PayPalCommerce\Button\Endpoint
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\Button\Endpoint;
/**
* Interface EndpointInterface
*/
interface EndpointInterface {
/**
* Returns the nonce for an endpoint.
*
* @return string
*/
public static function nonce(): string;
/**
* Handles the request for an endpoint.
*
* @return bool
*/
public function handle_request(): bool;
}