예제 #1
0
파일: Book.php 프로젝트: bakgat/notos
 public function addTag(Tag $tag)
 {
     $this->tags[] = $tag;
     $tag->addBook($this);
 }