public function getDraftNoteNew(Draft $d, User $u) { $note = new DraftNote(); $note->setDefaults(); $note->setDraft($d); $note->setUser($u); return $note; }
public function addNote(DraftNote $note) { $this->notes[] = $note; $note->setDraft($this); }