mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
23 lines
388 B
PHP
23 lines
388 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module;
|
|
|
|
/**
|
|
* Trait ModuleClassNameIdTrait
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module
|
|
*/
|
|
trait ModuleClassNameIdTrait
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
* @see Module::id()
|
|
*/
|
|
public function id(): string
|
|
{
|
|
return __CLASS__;
|
|
}
|
|
}
|