mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-01-17 15:18:17 +01:00
13 lines
177 B
PHP
13 lines
177 B
PHP
<?php
|
|
|
|
namespace PhpParser;
|
|
|
|
interface Builder
|
|
{
|
|
/**
|
|
* Returns the built node.
|
|
*
|
|
* @return Node The built node
|
|
*/
|
|
public function getNode() : Node;
|
|
} |