| 1 |
<?php |
| 2 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Given it's a very specific case. |
| 3 |
namespace Yoast\WP\SEO\Task_List\Domain\Tasks; |
| 4 |
|
| 5 |
use Yoast\WP\SEO\Task_List\Domain\Components\Task_Analyzer_Interface; |
| 6 |
|
| 7 |
/** |
| 8 |
* Represents a child task. |
| 9 |
*/ |
| 10 |
interface Child_Task_Interface extends Task_Interface { |
| 11 |
|
| 12 |
/** |
| 13 |
* Returns the task's analyzer component. |
| 14 |
* |
| 15 |
* @return Task_Analyzer_Interface|null |
| 16 |
*/ |
| 17 |
public function get_analyzer(): ?Task_Analyzer_Interface; |
| 18 |
} |
| 19 |
|