# wordpress-seo/28.4/src/task-list/domain/tasks/child-task-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.4/code/src/task-list/domain/tasks/child-task-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.4/raw/src/task-list/domain/tasks/child-task-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.4/code/src/task-list/domain/tasks/child-task-interface.php#L10-L20`.

```php
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Given it's a very specific case.
namespace Yoast\WP\SEO\Task_List\Domain\Tasks;

use Yoast\WP\SEO\Task_List\Domain\Components\Task_Analyzer_Interface;

/**
 * Represents a child task.
 */
interface Child_Task_Interface extends Task_Interface {

	/**
	 * Returns the task's analyzer component.
	 *
	 * @return Task_Analyzer_Interface|null
	 */
	public function get_analyzer(): ?Task_Analyzer_Interface;
}

```
