2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-06 01:27:18 +08:00
Files
panel/vendor/nikic/php-parser/lib/PhpParser/Builder.php
2022-11-17 00:18:56 +08:00

14 lines
203 B
PHP

<?php declare(strict_types=1);
namespace PhpParser;
interface Builder
{
/**
* Returns the built node.
*
* @return Node The built node
*/
public function getNode() : Node;
}