• File: current-site-url-provider-interface.php
  • Full Path: /home/satp2352/public_html/multitasjayautama.com/01/src/schema-aggregator/domain/current-site-url-provider-interface.php
  • Date Modified: 05/22/2026 6:32 AM
  • File size: 428 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Schema_Aggregator\Domain;

/**
 * Interface for providing current site URL.
 */
interface Current_Site_URL_Provider_Interface {

	/**
	 * Gets the current site's home URL with trailing slash.
	 *
	 * @return string The current site's home URL.
	 */
	public function get_current_site_url(): string;
}