🇳🇦🇲🇪♯➤ 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/polyfill-php72/application/integrations//integration-information-repository.php
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
namespace Yoast\WP\SEO\Editors\Application\Integrations;
use Yoast\WP\SEO\Editors\Domain\Integrations\Integration_Data_Provider_Interface;
/**
* The repository to get all enabled integrations.
*
* @makePublic
*/
class Integration_Information_Repository {
/**
* All plugin integrations.
*
* @var Integration_Data_Provider_Interface[]
*/
private $plugin_integrations;
/**
* The constructor.
*
* @param Integration_Data_Provider_Interface ...$plugin_integrations All integrations.
*/
public function __construct( Integration_Data_Provider_Interface ...$plugin_integrations ) {
$this->plugin_integrations = $plugin_integrations;
}
/**
* Returns the analysis list.
*
* @return array<array<string, bool>> The parsed list.
*/
public function get_integration_information(): array {
$array = [];
foreach ( $this->plugin_integrations as $feature ) {
$array = \array_merge( $array, $feature->to_legacy_array() );
}
return $array;
}
}