Example #1
0
 /**
  * @param Category $category
  */
 public function addCategoryCollection(Category $category)
 {
     $category->addPost($this);
     // synchronously updating inverse side
     $this->categories[] = $category;
 }