/home/fdhrevqn/public_html/wp-content/plugins.disabled/polylang/modules/REST/load.php
<?php
/**
 * @package Polylang
 */

namespace WP_Syntex\Polylang\REST;

defined( 'ABSPATH' ) || exit;

add_action(
	'pll_init',
	function ( $polylang ) {
		$polylang->rest = new API( $polylang->model );
		add_action( 'rest_api_init', array( $polylang->rest, 'init' ) );
	}
);