📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-07-01 17:41:32
📂
/ (Root)
/
home
/
apkbfjox
/
.trash
/
wordpress-seo
/
src
/
llms-txt
/
domain
/
available-posts
/
data-provider
📍 /home/apkbfjox/.trash/wordpress-seo/src/llms-txt/domain/available-posts/data-provider
🔄 Refresh
✏️
Editing: parameters.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. // phpcs:disable Yoast.NamingConventions.NamespaceName.MaxExceeded -- Needed in the folder structure. namespace Yoast\WP\SEO\Llms_Txt\Domain\Available_Posts\Data_Provider; /** * Object representation of the request parameters. */ class Parameters { /** * The post type. * * @var string */ private $post_type; /** * The search filter. * * @var string */ private $search_filter; /** * Class constructor. * * @param string $post_type The post type. * @param string $search_filter The search filter. */ public function __construct( string $post_type, string $search_filter ) { $this->post_type = $post_type; $this->search_filter = $search_filter; } /** * Getter for the post type. * * @return string */ public function get_post_type(): string { return $this->post_type; } /** * Getter for the search filter. * * @return string */ public function get_search_filter(): string { return $this->search_filter; } }
💾 Save Changes
❌ Cancel