# stripe/trunk/src/Report/ReportServiceProvider.php

Stripe Payment Forms by WP Simple Pay – Accept Credit Card Payments + Subscriptions with Stripe, version trunk. 54 lines.

- Page: https://pluginprobe.com/plugins/stripe/trunk/code/src/Report/ReportServiceProvider.php
- Raw: https://pluginprobe.com/plugins/stripe/trunk/raw/src/Report/ReportServiceProvider.php
- Modified: 2023-03-30T16:16:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/stripe/trunk/code/src/Report/ReportServiceProvider.php#L10-L20`.

```php
<?php
/**
 * Report: Service provider
 *
 * @package SimplePay
 * @subpackage Core
 * @copyright Copyright (c) 2023, Sandhills Development, LLC
 * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since 4.7.3
 */

namespace SimplePay\Core\Report;

use SimplePay\Core\AbstractPluginServiceProvider;

/**
 * ReportServiceProvider class.
 *
 * @since 4.7.3
 */
class ReportServiceProvider extends AbstractPluginServiceProvider {

	/**
	 * {@inheritdoc}
	 */
	public function get_services() {
		return array(
			'report-activity-overview',
		);
	}

	/**
	 * {@inheritdoc}
	 */
	public function get_subscribers() {
		return array();
	}

	/**
	 * {@inheritdoc}
	 */
	public function register() {
		$container = $this->getContainer();

		// Activity overview report.
		// Top stats (with deltas) and top 5 forms (with deltas), and a DYK blurb.
		$container->add(
			'report-activity-overview',
			ActivityOverviewReport::class
		);
	}

}

```
