24 lines
341 B
PHP
24 lines
341 B
PHP
|
<?php
|
||
|
|
||
|
namespace LanguageServer\Protocol;
|
||
|
|
||
|
/**
|
||
|
* A range in a text document expressed as (zero-based) start and end positions.
|
||
|
*/
|
||
|
class Range
|
||
|
{
|
||
|
/**
|
||
|
* The range's start position.
|
||
|
*
|
||
|
* @var Position
|
||
|
*/
|
||
|
public $start;
|
||
|
|
||
|
/**
|
||
|
* The range's end position.
|
||
|
*
|
||
|
* @var Position
|
||
|
*/
|
||
|
public $end;
|
||
|
}
|