| 1 |
<?php |
| 2 |
|
| 3 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong |
| 4 |
namespace Yoast\WP\SEO\Task_List\Infrastructure\Tasks_Collectors; |
| 5 |
|
| 6 |
/** |
| 7 |
* The interface of task collectors. |
| 8 |
*/ |
| 9 |
interface Tasks_Collector_Interface { |
| 10 |
|
| 11 |
/** |
| 12 |
* Gets the tasks data. |
| 13 |
* |
| 14 |
* @return array<string, array<string, string|bool>> The tasks data. |
| 15 |
*/ |
| 16 |
public function get_tasks_data(): array; |
| 17 |
} |
| 18 |
|