# elasticpress/5.3.5/includes/classes/StatusReport/Report.php

ElasticPress, version 5.3.5. 53 lines.

- Page: https://pluginprobe.com/plugins/elasticpress/5.3.5/code/includes/classes/StatusReport/Report.php
- Raw: https://pluginprobe.com/plugins/elasticpress/5.3.5/raw/includes/classes/StatusReport/Report.php
- Modified: 2024-12-12T15:06:52+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/elasticpress/5.3.5/code/includes/classes/StatusReport/Report.php#L10-L20`.

```php
<?php
/**
 * Report abstract class
 *
 * @since 4.4.0
 * @package elasticpress
 */

namespace ElasticPress\StatusReport;

defined( 'ABSPATH' ) || exit;

/**
 * Report class
 *
 * @package ElasticPress
 */
abstract class Report {

	/**
	 * Return the report title
	 *
	 * @return string
	 */
	abstract public function get_title(): string;

	/**
	 * Return the report group(s) of fields
	 *
	 * @return array
	 */
	abstract public function get_groups(): array;

	/**
	 * Return any actions related to the report, like a button
	 *
	 * @return string
	 */
	public function get_actions(): array {
		return [];
	}

	/**
	 * Return the report messages.
	 *
	 * @return array
	 * @since 4.5.0
	 */
	public function get_messages(): array {
		return [];
	}
}

```
