📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 15:22:04
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
plugins
/
wordpress-seo
/
src
/
ai
/
content-planner
/
domain
✏️
Editing: section.php
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\AI\Content_Planner\Domain; /** * Value object for a content outline section. */ class Section { /** * The subheading text. * * @var string|null */ private $subheading_text; /** * The content notes. * * @var array<string> */ private $content_notes; /** * The constructor. * * @param array<string> $content_notes The content notes. * @param string|null $subheading_text The subheading text. */ public function __construct( array $content_notes, ?string $subheading_text ) { $this->subheading_text = $subheading_text; $this->content_notes = $content_notes; } /** * Returns the subheading text. * * @return string|null The subheading text. */ public function get_subheading_text(): ?string { return $this->subheading_text; } /** * Returns the content notes. * * @return array<string> The content notes. */ public function get_content_notes(): array { return $this->content_notes; } /** * Returns this object in array format. * * @return array<string, string|array<string>|null> The section as an array. */ public function to_array(): array { return [ 'subheading_text' => $this->subheading_text, 'content_notes' => $this->content_notes, ]; } }
💾 Save Changes
❌ Cancel