1<?php 2 3declare(strict_types = 1); 4 5namespace Elasticsearch\Endpoints\Remote; 6 7use Elasticsearch\Endpoints\AbstractEndpoint; 8 9/** 10 * Class Info 11 * 12 * @category Elasticsearch 13 * @package Elasticsearch\Endpoints\Cluster\Nodes 14 * @author Zachary Tong <zach@elastic.co> 15 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 16 * @link http://elastic.co 17 */ 18class Info extends AbstractEndpoint 19{ 20 public function getURI(): string 21 { 22 return "/_remote/info"; 23 } 24 25 public function getParamWhitelist(): array 26 { 27 return []; 28 } 29 30 public function getMethod(): string 31 { 32 return 'GET'; 33 } 34} 35