예제 #1
0
 public function getDraftNoteNew(Draft $d, User $u)
 {
     $note = new DraftNote();
     $note->setDefaults();
     $note->setDraft($d);
     $note->setUser($u);
     return $note;
 }
예제 #2
0
파일: Draft.php 프로젝트: jwoods/CE_27
 public function addNote(DraftNote $note)
 {
     $this->notes[] = $note;
     $note->setDraft($this);
 }