FileMaster
Search
Toggle Dark Mode
Home
/
.
/
kiara
/
wp-content
/
plugins
/
woocommerce-paypal-payments
/
modules
/
ppcp-compat
/
src
Edit File: Integration.php
<?php /** * Interface for all integration controllers. * * @package WooCommerce\PayPalCommerce\Compat */ declare (strict_types=1); namespace WooCommerce\PayPalCommerce\Compat; interface Integration { /** * Integrates some (possibly external) service with PayPal Payments. */ public function integrate(): void; }
Save
Back