mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 12:35:31 +00:00
9 lines
189 B
PHP
9 lines
189 B
PHP
|
<?php
|
||
|
namespace Wikia\PortableInfobox\Parser\Nodes;
|
||
|
|
||
|
class NodeTitle extends Node {
|
||
|
public function getData() {
|
||
|
return [ 'value' => $this->getValueWithDefault( $this->xmlNode ) ];
|
||
|
}
|
||
|
}
|