See More

> */ public function toArray(): array { $body = [ 'type' => $this->type, 'script' => $this->script->toArray(), 'order' => $this->order, ]; if ($this->mode !== null) { $body['mode'] = $this->mode; } if ($this->nested !== null) { $body['nested'] = $this->nested->toArray(); } return ['_script' => $body]; } }