name = $list->name; $this->listId = $list->id; $this->isPublic = $list->is_public; } public function save(): void { if ($this->listId) { $list = MovieList::find($this->listId); $list->name = $this->name; $list->is_public = $this->isPublic; $list->save(); } } }