File "data-interface.php"
Full path: /home/victfvha/tbxtf.com/upgrade/data-interface.php
File
size: 344 B (344 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Dashboard\Domain\Data_Provider;
/**
* The interface to describe the data domain.
*/
interface Data_Interface {
/**
* A to array method.
*
* @return array<string>
*/
public function to_array(): array;
}