| 1 |
<?php |
| 2 |
|
| 3 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong |
| 4 |
namespace Yoast\WP\SEO\Editors\Framework\Seo; |
| 5 |
|
| 6 |
interface Title_Data_Provider_Interface { |
| 7 |
|
| 8 |
/** |
| 9 |
* Retrieves the title template. |
| 10 |
* |
| 11 |
* @param bool $fallback Whether to return the hardcoded fallback if the template value is empty. Default true. |
| 12 |
* |
| 13 |
* @return string The title template. |
| 14 |
*/ |
| 15 |
public function get_title_template( bool $fallback = true ): string; |
| 16 |
} |
| 17 |
|