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/ClientCapabilitiesGeneral.php')
-rw-r--r--vendor/felixfbecker/language-server-protocol/src/ClientCapabilitiesGeneral.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/vendor/felixfbecker/language-server-protocol/src/ClientCapabilitiesGeneral.php b/vendor/felixfbecker/language-server-protocol/src/ClientCapabilitiesGeneral.php
deleted file mode 100644
index 70463d0..0000000
--- a/vendor/felixfbecker/language-server-protocol/src/ClientCapabilitiesGeneral.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-namespace LanguageServerProtocol;
-
-class ClientCapabilitiesGeneral
-{
- /**
- * Client capabilities specific to regular expressions.
- *
- * @since 3.16.0
- *
- * @var RegularExpressionsClientCapabilities|null
- */
- public $regularExpressions;
-
- /**
- * Client capabilities specific to the client's markdown parser.
- *
- * @since 3.16.0
- *
- * @var MarkdownClientCapabilities|null
- */
- public $markdown;
-
-
- public function __construct(
- RegularExpressionsClientCapabilities $regularExpressions = null,
- MarkdownClientCapabilities $markdown = null
- ) {
- $this->regularExpressions = $regularExpressions;
- $this->markdown = $markdown;
- }
-}