📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 13:30:56
📂
/ (Root)
/
home
/
apkbfjox
/
stargame.pk
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
schema-aggregator
/
application
📍 /home/apkbfjox/stargame.pk/wp-content/plugins/wordpress-seo/src/schema-aggregator/application
🔄 Refresh
✏️
Editing: aggregate-site-schema-command.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\Schema_Aggregator\Application; use Yoast\WP\SEO\Schema_Aggregator\Domain\Page_Controls; /** * Class that represents the command to aggregate site schema. */ class Aggregate_Site_Schema_Command { /** * The page controls. * * @var Page_Controls */ private $page_controls; /** * The constructor. * * @param int $page The current page. * @param int $per_page The number of items per page. * @param string $post_type The post type to aggregate schema for. */ public function __construct( int $page, int $per_page, string $post_type ) { $this->page_controls = new Page_Controls( $page, $per_page, $post_type ); } /** * Gets the page controls. * * @return Page_Controls */ public function get_page_controls(): Page_Controls { return $this->page_controls; } }
💾 Save Changes
❌ Cancel