mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-25 01:02:18 +08:00
13 lines
371 B
PHP
13 lines
371 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 (): \WooCommerce\PayPalCommerce\StatusReport\Renderer {
|
|
return new \WooCommerce\PayPalCommerce\StatusReport\Renderer();
|
|
});
|