| 1 |
<?php |
| 2 |
|
| 3 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. |
| 4 |
namespace Yoast\WP\SEO\Schema_Aggregator\Domain; |
| 5 |
|
| 6 |
/** |
| 7 |
* Interface for providing current site URL. |
| 8 |
*/ |
| 9 |
interface Current_Site_URL_Provider_Interface { |
| 10 |
|
| 11 |
/** |
| 12 |
* Gets the current site's home URL with trailing slash. |
| 13 |
* |
| 14 |
* @return string The current site's home URL. |
| 15 |
*/ |
| 16 |
public function get_current_site_url(): string; |
| 17 |
} |
| 18 |
|