PhpParser\Builder\Param::getNode PHP Method

getNode() public method

Returns the built parameter node.
public getNode ( ) : Param
return PhpParser\Node\Param The built parameter node
    public function getNode() {
        return new Node\Param(
            $this->name, $this->default, $this->type, $this->byRef
        );
    }