name = $name; $this->body = $body; $this->id = $id; } public function es(): array { $es = [ 'index' => $this->name, 'body' => [ 'doc' => $this->body->es() ] ]; if ($this->id) { $es['id'] = $this->id; } return $es; } }