# wordpress-seo/28.3/src/task-list/domain/components/task-analyzer-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.3/code/src/task-list/domain/components/task-analyzer-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.3/raw/src/task-list/domain/components/task-analyzer-interface.php
- Modified: 2026-03-05T08:37:56+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/28.3/code/src/task-list/domain/components/task-analyzer-interface.php#L10-L20`.

```php
<?php

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

/**
 * Represents an analyzer component for a task.
 */
interface Task_Analyzer_Interface {

	/**
	 * Returns the type of the analyzer.
	 *
	 * @return string
	 */
	public function get_type(): string;

	/**
	 * Returns an array representation of the analyzer data.
	 *
	 * @return array<string, string> Returns in an array format.
	 */
	public function to_array(): array;
}

```
