node_id ?? null; if (isset($node_id)) { return "/_nodes/$node_id/shutdown"; } return "/_nodes/shutdown"; } public function getParamWhitelist(): array { return [ ]; } public function getMethod(): string { return 'GET'; } public function setNodeId($node_id): GetNode { if (isset($node_id) !== true) { return $this; } $this->node_id = $node_id; return $this; } }