created = new DrupalDateTime($time); return $this; } public function setTitle(string $title) { $this->title = $title; return $this; } public function getPost(): NodeInterface { $post = Node::create([ 'created' => $this?->created->getTimestamp(), 'title' => $this->title, 'type' => 'post', ]); $post->save(); return $post; } }