Phan\Language\FileRef::withLineNumberEnd PHP Method

withLineNumberEnd() public method

public withLineNumberEnd ( integer $line_number ) : static
$line_number integer The ending line number of the element within the $file
return static This context with the given value is returned
    public function withLineNumberEnd(int $line_number)
    {
        $this->line_number_end = $line_number;
        return $this;
    }