wincher = $wincher; } /** * Initializes the integration. * * @deprecated 21.6 * @codeCoverageIgnore * * @return void */ public function register_hooks() { \_deprecated_function( __METHOD__, 'Yoast SEO 21.6' ); } /** * Returns the conditionals based in which this loadable should be active. * * @deprecated 21.6 * @codeCoverageIgnore * * @return array The conditionals. */ public static function get_conditionals() { return [ Admin_Conditional::class ]; } /** * Adds the Wincher integration toggle to the $integration_toggles array. * * @deprecated 21.6 * @codeCoverageIgnore * * @param array $integration_toggles The integration toggles array. * * @return array The updated integration toggles array. */ public function add_integration_toggle( $integration_toggles ) { \_deprecated_function( __METHOD__, 'Yoast SEO 21.6' ); return $integration_toggles; } /** * Adds the disabled note when the integration toggle is disabled. * * @deprecated 21.6 * @codeCoverageIgnore * * @param Yoast_Feature_Toggle $integration The integration toggle class. * * @return void */ public function after_integration_toggle( $integration ) { \_deprecated_function( __METHOD__, 'Yoast SEO 21.6' ); } /** * Adds the disabled note to the network integration toggle. * * @deprecated 21.6 * @codeCoverageIgnore * * @param Yoast_Feature_Toggle $integration The integration toggle class. * * @return void */ public function after_network_integration_toggle( $integration ) { \_deprecated_function( __METHOD__, 'Yoast SEO 21.6' ); } }