PhpParser\Error::setStartLine PHP Method

setStartLine() public method

Sets the line the error starts in.
public setStartLine ( integer $line )
$line integer Error start line
    public function setStartLine($line)
    {
        $this->attributes['startLine'] = (int) $line;
        $this->updateMessage();
    }