1: <?php 2: namespace Pharborist\Functions; 3: 4: use Pharborist\NodeInterface; 5: 6: /** 7: * A lexical variable imported by an anonymous function in its `use` statement. 8: */ 9: interface LexicalVariableNode extends NodeInterface { 10: 11: } 12: