node = Node::create([ 'type' => 'page', 'langcode' => $this->languageCode, 'title' => $this->title ]); } public static function create(): PageBuilder { return new PageBuilder(); } public function build(): Node { $this->node->save(); return $this->node; } }