mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-26 18:19:57 +09:00
13 lines
170 B
PHP
13 lines
170 B
PHP
<?php
|
|
|
|
namespace PhpParser;
|
|
|
|
interface Builder
|
|
{
|
|
/**
|
|
* Returns the built node.
|
|
*
|
|
* @return Node The built node
|
|
*/
|
|
public function getNode();
|
|
} |