Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/felixfbecker/language-server-protocol/src/DocumentHighlight.php')
-rw-r--r--vendor/felixfbecker/language-server-protocol/src/DocumentHighlight.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/vendor/felixfbecker/language-server-protocol/src/DocumentHighlight.php b/vendor/felixfbecker/language-server-protocol/src/DocumentHighlight.php
deleted file mode 100644
index 4c329fc..0000000
--- a/vendor/felixfbecker/language-server-protocol/src/DocumentHighlight.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-namespace LanguageServerProtocol;
-
-/**
- * A document highlight is a range inside a text document which deserves
- * special attention. Usually a document highlight is visualized by changing
- * the background color of its range.
- */
-class DocumentHighlight
-{
- /**
- * The range this highlight applies to.
- *
- * @var Range
- */
- public $range;
-
- /**
- * The highlight kind, default is DocumentHighlightKind::TEXT.
- *
- * @var int|null
- */
- public $kind;
-
- public function __construct(Range $range = null, int $kind = null)
- {
- /** @psalm-suppress PossiblyNullPropertyAssignmentValue */
- $this->range = $range;
- $this->kind = $kind;
- }
-}