mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-28 10:10:51 +00:00
14 lines
246 B
PHP
14 lines
246 B
PHP
<?php
|
|
namespace PortableInfobox\Parser\Nodes;
|
|
|
|
class NodeHeader extends Node {
|
|
|
|
public function getData() {
|
|
if ( !isset( $this->data ) ) {
|
|
$this->data = [ 'value' => $this->getInnerValue( $this->xmlNode ) ];
|
|
}
|
|
|
|
return $this->data;
|
|
}
|
|
}
|