# wordpress-seo/trunk/src/dashboard/domain/data-provider/data-interface.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version trunk. 18 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/dashboard/domain/data-provider/data-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/trunk/raw/src/dashboard/domain/data-provider/data-interface.php
- Modified: 2026-01-20T12:23:48+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/wordpress-seo/trunk/code/src/dashboard/domain/data-provider/data-interface.php#L10-L20`.

```php
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Dashboard\Domain\Data_Provider;

/**
 * The interface to describe the data domain.
 */
interface Data_Interface {

	/**
	 * A to array method.
	 *
	 * @return array<string>
	 */
	public function to_array(): array;
}

```
