mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
14 lines
243 B
PHP
14 lines
243 B
PHP
<?php
|
|
/**
|
|
* The admin notice module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Button
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\AdminNotices;
|
|
|
|
return static function (): AdminNotices {
|
|
return new AdminNotices();
|
|
};
|