mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
16 lines
292 B
PHP
16 lines
292 B
PHP
<?php
|
|
/**
|
|
* The status report module services.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\StatusReport
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\StatusReport;
|
|
|
|
return array(
|
|
'status-report.renderer' => static function (): Renderer {
|
|
return new Renderer();
|
|
},
|
|
);
|