PhpParser\NodeAbstract::setLine PHP Method

setLine() public method

Sets line the node started in.
public setLine ( integer $line )
$line integer Line
    public function setLine($line)
    {
        $this->setAttribute('startLine', (int) $line);
    }