File "dashboard-repository-interface.php"

Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/wordpress-seo/src/dashboard/domain/data-provider/dashboard-repository-interface.php
File size: 539 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\Dashboard\Domain\Data_Provider;

/**
 * Interface describing the way to get data for a specific data provider.
 */
interface Dashboard_Repository_Interface {

	/**
	 * Method to get dashboard related data from a provider.
	 *
	 * @param Parameters $parameters The parameter to get the dashboard data for.
	 *
	 * @return Data_Container
	 */
	public function get_data( Parameters $parameters ): Data_Container;
}