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/CompletionClientCapabilitiesCompletionList.php')
-rw-r--r--vendor/felixfbecker/language-server-protocol/src/CompletionClientCapabilitiesCompletionList.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/felixfbecker/language-server-protocol/src/CompletionClientCapabilitiesCompletionList.php b/vendor/felixfbecker/language-server-protocol/src/CompletionClientCapabilitiesCompletionList.php
deleted file mode 100644
index 2a23ed9..0000000
--- a/vendor/felixfbecker/language-server-protocol/src/CompletionClientCapabilitiesCompletionList.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
-
-namespace LanguageServerProtocol;
-
-class CompletionClientCapabilitiesCompletionList
-{
-
- /**
- * The client supports the the following itemDefaults on
- * a completion list.
- *
- * The value lists the supported property names of the
- * `CompletionList.itemDefaults` object. If omitted
- * no properties are supported.
- *
- * @since 3.17.0 - proposed state
- *
- * @var string[]|null
- */
- public $itemDefaults;
-
- /**
- * @param string[]|null $itemDefaults
- */
- public function __construct(
- array $itemDefaults = null
- ) {
- $this->itemDefaults = $itemDefaults;
- }
-}