PortableInfobox/services/Parser/Nodes/NodeTitle.php

9 lines
189 B
PHP
Raw Normal View History

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