mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-24 16:26:20 +00:00
14 lines
308 B
PHP
14 lines
308 B
PHP
<?php
|
|
namespace PortableInfobox\Parser\Nodes;
|
|
|
|
class NodeUnimplemented extends Node {
|
|
|
|
public function getData() {
|
|
throw new UnimplementedNodeException( $this->getType() );
|
|
}
|
|
}
|
|
|
|
// phpcs:ignore Generic.Files.OneObjectStructurePerFile.MultipleFound
|
|
class UnimplementedNodeException extends \Exception {
|
|
}
|