mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
18 lines
327 B
PHP
18 lines
327 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module;
|
|
|
|
/**
|
|
* @package WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module
|
|
*/
|
|
interface Module
|
|
{
|
|
/**
|
|
* Unique identifier for your Module.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function id(): string;
|
|
}
|