/**
  * @internal
  */
 public function __construct($config = array())
 {
     $config = array_merge(array('name' => 'Root', 'parent' => null, 'isPage' => false, 'isPseudoPage' => false, 'inherits' => true, 'componentId' => 'root', 'filename' => false), $config);
     parent::__construct($config);
     $this->_inheritClasses = array();
     $this->_uniqueParentDatas = array();
 }