PortableInfobox/services/Parser/Nodes/NodeHeader.php
2015-04-28 09:00:26 +02:00

10 lines
233 B
PHP

<?php
namespace Wikia\PortableInfobox\Parser\Nodes;
class NodeHeader extends Node {
public function getData() {
return [ 'value' => $this->parseWithExternalParser( (string) $this->xmlNode->{self::VALUE_TAG_NAME}, true ) ];
}
}