🇳🇦🇲🇪♯➤ webm004.cluster127.gra.hosting.ovh.net 🇻♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾♯➤ 2026
𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.191
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/session-compressed/auth/codemirror/posts//abstract-post-seo-data-provider.php
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.MaxExceeded
namespace Yoast\WP\SEO\Editors\Framework\Seo\Posts;
use WP_Post;
use Yoast\WP\SEO\Editors\Domain\Seo\Seo_Plugin_Data_Interface;
/**
* Abstract class for all post data providers.
*/
abstract class Abstract_Post_Seo_Data_Provider {
/**
* Holds the WordPress Post.
*
* @var WP_Post
*/
protected $post;
/**
* The post.
*
* @param WP_Post $post The post.
*
* @return void
*/
public function set_post( WP_Post $post ): void {
$this->post = $post;
}
/**
* Method to return the compiled SEO data.
*
* @return Seo_Plugin_Data_Interface The specific seo data.
*/
abstract public function get_data(): Seo_Plugin_Data_Interface;
}