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