* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class RemoteInfo extends AbstractEndpoint { /** * @return string */ public function getURI() { return "/_remote/info"; } /** * @return string[] */ public function getParamWhitelist() { return []; } /** * @return string */ public function getMethod() { return 'GET'; } }