Example #1
0
 /**
  * @param Rendered|string $content
  * @return $this
  */
 public function append($content)
 {
     if ($this->isRendered($content)) {
         $this->getGroup(get_class($content))->append($content);
     }
     parent::append($content);
     return $this;
 }