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

CodeLensWorkspaceClientCapabilities.php « src « language-server-protocol « felixfbecker « vendor - github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e97a8b1db4e2469128e267eb853e8e153e67172e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php

namespace LanguageServerProtocol;

class CodeLensWorkspaceClientCapabilities
{
    /**
     * Whether the client implementation supports a refresh request sent from the
     * server to the client.
     *
     * Note that this event is global and will force the client to refresh all
     * code lenses currently shown. It should be used with absolute care and is
     * useful for situation where a server for example detect a project wide
     * change that requires such a calculation.
     *
     * @var bool|null
     */
    public $refreshSupport;

    public function __construct(
        bool $refreshSupport = null
    ) {
        $this->refreshSupport = $refreshSupport;
    }
}