contents = array(); } public function add($content) : void { $this->contents[]=$content; } public function toString( $withParent = false ) : string { $strComment="\r\n"; return $strComment; } public function getClassName( bool $fqcn=null ) : string { return self::getStaticClassName( $fqcn ); } public static function getStaticClassName( bool $fqcn=null ) : string { return $fqcn ? parent::getStaticClassName( $fqcn ).self::CLASS_SEPARATOR.__CLASS__ : __CLASS__; } }