Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce-paypal-payments
/
modules
/
ppcp-button
/
src
/
Endpoint
:
EndpointInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; }