File "Integration.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-compat/src/Integration.php
File size: 325 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
}