index ?? null; if (isset($index)) { return "/$index"; } throw new RuntimeException('Missing parameter for the endpoint indices.create'); } public function getParamWhitelist(): array { return [ 'include_type_name', 'wait_for_active_shards', 'timeout', 'master_timeout' ]; } public function getMethod(): string { return 'PUT'; } public function setBody($body): Create { if (isset($body) !== true) { return $this; } $this->body = $body; return $this; } }