1: <?php
2: namespace Pharborist;
3:
4: use Pharborist\Functions\UnsetNode;
5:
6: /**
7: * A unset statement.
8: */
9: class UnsetStatementNode extends StatementNode {
10: /**
11: * @var UnsetNode
12: */
13: protected $functionCall;
14:
15: /**
16: * @return UnsetNode
17: */
18: public function getFunctionCall() {
19: return $this->functionCall;
20: }
21: }
22: