🇳🇦🇲🇪♯➤ webm004.cluster127.gra.hosting.ovh.net 🇻♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾♯➤ 2026
𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.217.7
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/envhttps/application/meta//schema-aggregator-response-composer-20260913155751.php
<?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\Schema_Piece_Collection;
/**
* Class Schema_Aggregator_Response_Composer
*
* Composes the final schema response.
*/
class Schema_Aggregator_Response_Composer {
/**
* Composes the final schema response.
*
* @param Schema_Piece_Collection $schema_pieces The schema pieces to include in the response.
*
* @return array<string> The composed schema response.
*/
public function compose( Schema_Piece_Collection $schema_pieces ): array {
$composed_pieces = [];
foreach ( $schema_pieces->to_array() as $piece ) {
$composed_pieces[] = \array_merge(
[
'@context' => 'https://schema.org',
],
$piece->get_data(),
);
}
return $composed_pieces;
}
}