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