woocommerce-paypal-payments/modules/ppcp-status-report/services.php

17 lines
292 B
PHP
Raw Permalink Normal View History

<?php
/**
* The status report module services.
*
* @package WooCommerce\PayPalCommerce\StatusReport
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\StatusReport;
2021-07-22 15:39:57 +02:00
return array(
2021-10-13 15:02:10 +03:00
'status-report.renderer' => static function (): Renderer {
2021-07-22 15:39:57 +02:00
return new Renderer();
},
);