sandbox = $sandbox; } public function leaveNode(Node $node) { if ($node instanceof Node\Expr\FuncCall) { if ($node->name instanceof Node\Expr\Variable) { $this->sandbox->validationError("Sandboxed code attempted to call a variable method!", 0, $node); } } } }