Ejemplo n.º 1
0
 public function pushGroup(RTFGroup $group)
 {
     $group->setParent($this);
     array_push($this->content, $group);
 }
Ejemplo n.º 2
0
 /**
  * @param RTFGroup $group
  */
 public function pushGroup(RTFGroup $group)
 {
     $group->setParent($this);
     $this->content[] = $group;
 }