| 1 |
<?php |
| 2 |
|
| 3 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong |
| 4 |
namespace Yoast\WP\SEO\Editors\Framework\Seo; |
| 5 |
|
| 6 |
interface Description_Data_Provider_Interface { |
| 7 |
|
| 8 |
/** |
| 9 |
* Retrieves the description template. |
| 10 |
* |
| 11 |
* @return string The description template. |
| 12 |
*/ |
| 13 |
public function get_description_template(): string; |
| 14 |
|
| 15 |
/** |
| 16 |
* Determines the date to be displayed in the snippet preview. |
| 17 |
* |
| 18 |
* @return string |
| 19 |
*/ |
| 20 |
public function get_description_date(): string; |
| 21 |
} |
| 22 |
|