PortableInfobox/services/Parser/Nodes/NodeHeader.php

10 lines
209 B
PHP
Raw Normal View History

<?php
namespace Wikia\PortableInfobox\Parser\Nodes;
class NodeHeader extends Node {
public function getData() {
2015-05-04 11:57:10 +00:00
return [ 'value' => $this->parseWithExternalParser( (string) $this->xmlNode, true ) ];
}
}