1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-30 04:19:30 +01:00
PHP-Parser/lib/PhpParser/Builder.php

14 lines
203 B
PHP
Raw Normal View History

2017-08-18 22:57:27 +02:00
<?php declare(strict_types=1);
2012-03-10 17:56:56 +01:00
namespace PhpParser;
interface Builder
2012-03-10 17:56:56 +01:00
{
/**
* Returns the built node.
*
* @return Node The built node
2012-03-10 17:56:56 +01:00
*/
2017-04-28 21:40:59 +02:00
public function getNode() : Node;
2018-01-10 18:04:06 +01:00
}