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

9 lines
189 B
PHP

<?php
namespace Wikia\PortableInfobox\Parser\Nodes;
class NodeTitle extends Node {
public function getData() {
return [ 'value' => $this->getValueWithDefault( $this->xmlNode ) ];
}
}