node_id ?? null; if (isset($node_id)) { return "/_cluster/stats/nodes/$node_id"; } return "/_cluster/stats"; } public function getParamWhitelist(): array { return [ 'flat_settings', 'timeout' ]; } public function getMethod(): string { return 'GET'; } public function setNodeId($node_id): Stats { if (isset($node_id) !== true) { return $this; } if (is_array($node_id) === true) { $node_id = implode(",", $node_id); } $this->node_id = $node_id; return $this; } }