📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 18:38:07
📂
/ (Root)
/
home
/
apkbfjox
/
stargame.pk
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
ai
/
content-planner
/
domain
📍 /home/apkbfjox/stargame.pk/wp-content/plugins/wordpress-seo/src/ai/content-planner/domain
🔄 Refresh
✏️
Editing: post-list.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\AI\Content_Planner\Domain; /** * List of posts. */ class Post_List { /** * The posts. * * @var array<Post> */ private $posts = []; /** * Adds a post to the list. * * @param Post $post A post. * * @return void */ public function add( Post $post ): void { $this->posts[] = $post; } /** * Returns this object in array format. * * @return array<array<string, string|bool|array<string, int>>> The posts as an array. */ public function to_array(): array { $result = []; foreach ( $this->posts as $post ) { $result[] = $post->to_array(); } return $result; } /** * Returns the minimal array representation suitable for the REST response. * * @return array<array<string, string>> The posts as minimal arrays. */ public function to_minimal_array(): array { $result = []; foreach ( $this->posts as $post ) { $result[] = $post->to_minimal_array(); } return $result; } }
💾 Save Changes
❌ Cancel