| 1 |
<?php |
| 2 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. |
| 3 |
namespace Yoast\WP\SEO\Task_List\Domain\Data; |
| 4 |
|
| 5 |
/** |
| 6 |
* Interface for content item data objects used in child tasks. |
| 7 |
*/ |
| 8 |
interface Content_Item_Data_Interface { |
| 9 |
|
| 10 |
/** |
| 11 |
* Returns the content item ID. |
| 12 |
* |
| 13 |
* @return int |
| 14 |
*/ |
| 15 |
public function get_content_id(): int; |
| 16 |
|
| 17 |
/** |
| 18 |
* Returns the content item title. |
| 19 |
* |
| 20 |
* @return string |
| 21 |
*/ |
| 22 |
public function get_title(): string; |
| 23 |
} |
| 24 |
|