2024-05-07 12:17:25 +02:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace PhpParser;
|
|
|
|
|
|
2024-05-17 12:24:19 +00:00
|
|
|
interface Builder {
|
2024-05-07 12:17:25 +02:00
|
|
|
/**
|
|
|
|
|
* Returns the built node.
|
|
|
|
|
*
|
|
|
|
|
* @return Node The built node
|
|
|
|
|
*/
|
2024-05-17 12:24:19 +00:00
|
|
|
public function getNode(): Node;
|
2024-05-07 12:17:25 +02:00
|
|
|
}
|