✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.223
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/bundled-cache-store/application//content-outline-command.php
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.

namespace Yoast\WP\SEO\AI\Content_Planner\Application;

use WP_User;
use Yoast\WP\SEO\AI\Content_Planner\Domain\Category;

/**
 * Command for requesting a content outline.
 */
class Content_Outline_Command {

	/**
	 * The user.
	 *
	 * @var WP_User
	 */
	private $user;

	/**
	 * The post type.
	 *
	 * @var string
	 */
	private $post_type;

	/**
	 * The language.
	 *
	 * @var string
	 */
	private $language;

	/**
	 * The editor.
	 *
	 * @var string
	 */
	private $editor;

	/**
	 * The title.
	 *
	 * @var string
	 */
	private $title;

	/**
	 * The intent.
	 *
	 * @var string
	 */
	private $intent;

	/**
	 * The explanation.
	 *
	 * @var string
	 */
	private $explanation;

	/**
	 * The keyphrase.
	 *
	 * @var string
	 */
	private $keyphrase;

	/**
	 * The meta description.
	 *
	 * @var string
	 */
	private $meta_description;

	/**
	 * The category.
	 *
	 * @var Category
	 */
	private $category;

	/**
	 * The recent content from the suggestions response.
	 *
	 * @var array<array<string, string|bool|array<string, int>>>
	 */
	private $recent_content;

	/**
	 * The constructor.
	 *
	 * @param WP_User                                              $user             The user.
	 * @param string                                               $post_type        The post type.
	 * @param string                                               $language         The language.
	 * @param string                                               $editor           The editor.
	 * @param string                                               $title            The title.
	 * @param string                                               $intent           The intent.
	 * @param string                                               $explanation      The explanation.
	 * @param string                                               $keyphrase        The keyphrase.
	 * @param string                                               $meta_description The meta description.
	 * @param string                                               $category_name    The category name.
	 * @param int                                                  $category_id      The category ID.
	 * @param array<array<string, string|bool|array<string, int>>> $recent_content   The recent content from the suggestions response.
	 */
	public function __construct(
		WP_User $user,
		string $post_type,
		string $language,
		string $editor,
		string $title,
		string $intent,
		string $explanation,
		string $keyphrase,
		string $meta_description,
		string $category_name,
		int $category_id,
		array $recent_content
	) {
		$this->user             = $user;
		$this->post_type        = $post_type;
		$this->language         = $language;
		$this->editor           = $editor;
		$this->title            = $title;
		$this->intent           = $intent;
		$this->explanation      = $explanation;
		$this->keyphrase        = $keyphrase;
		$this->meta_description = $meta_description;
		$this->category         = new Category( $category_name, $category_id );
		$this->recent_content   = $recent_content;
	}

	/**
	 * Returns the user.
	 *
	 * @return WP_User The user.
	 */
	public function get_user(): WP_User {
		return $this->user;
	}

	/**
	 * Returns the post type.
	 *
	 * @return string The post type.
	 */
	public function get_post_type(): string {
		return $this->post_type;
	}

	/**
	 * Returns the language.
	 *
	 * @return string The language.
	 */
	public function get_language(): string {
		return $this->language;
	}

	/**
	 * Returns the editor.
	 *
	 * @return string The editor.
	 */
	public function get_editor(): string {
		return $this->editor;
	}

	/**
	 * Returns the title.
	 *
	 * @return string The title.
	 */
	public function get_title(): string {
		return $this->title;
	}

	/**
	 * Returns the intent.
	 *
	 * @return string The intent.
	 */
	public function get_intent(): string {
		return $this->intent;
	}

	/**
	 * Returns the explanation.
	 *
	 * @return string The explanation.
	 */
	public function get_explanation(): string {
		return $this->explanation;
	}

	/**
	 * Returns the keyphrase.
	 *
	 * @return string The keyphrase.
	 */
	public function get_keyphrase(): string {
		return $this->keyphrase;
	}

	/**
	 * Returns the meta description.
	 *
	 * @return string The meta description.
	 */
	public function get_meta_description(): string {
		return $this->meta_description;
	}

	/**
	 * Returns the category.
	 *
	 * @return Category The category.
	 */
	public function get_category(): Category {
		return $this->category;
	}

	/**
	 * Returns the recent content from the suggestions response.
	 *
	 * @return array<array<string, string|bool|array<string, int>>> The recent content.
	 */
	public function get_recent_content(): array {
		return $this->recent_content;
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
23 Sep 2026 8.04 AM
docteuh / users
0755
js
--
16 Sep 2026 2.56 AM
docteuh / users
0755
category-repository-interface.php
0.801 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
content-outline-command-handler.php
5.915 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
content-outline-command.php
4.759 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
content-planner-endpoints-repository.php
0.747 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
content-suggestion-command-handler.php
6.855 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
content-suggestion-command.php
1.494 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF