Files
development/vendor/felixfbecker/language-server-protocol/src/Location.php
2023-03-09 16:27:10 +09:00

28 lines
532 B
PHP

<?php
namespace LanguageServerProtocol;
/**
* Represents a location inside a resource, such as a line inside a text file.
*/
class Location
{
/**
* @var string
*/
public $uri;
/**
* @var Range
*/
public $range;
public function __construct(string $uri = null, Range $range = null)
{
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
$this->uri = $uri;
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
$this->range = $range;
}
}