14 lines
328 B
PHP
14 lines
328 B
PHP
<?php
|
|
|
|
/**
|
|
* The admin notice module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Button
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\AdminNotices;
|
|
|
|
return static function (): \WooCommerce\PayPalCommerce\AdminNotices\AdminNotices {
|
|
return new \WooCommerce\PayPalCommerce\AdminNotices\AdminNotices();
|
|
};
|