This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
HomeIsWhereTheMoneyIs/vendor/nikic/php-parser/lib/PhpParser/Builder.php
T
2017-05-24 18:35:30 -05:00

13 lines
170 B
PHP
Executable File

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