Install psalm as dev, sync scripts updates

This commit is contained in:
Clemens Schwaighofer
2023-03-09 16:27:10 +09:00
parent 6bec59e387
commit feba79a2e8
2099 changed files with 283333 additions and 32 deletions

View File

@@ -0,0 +1,41 @@
<?php
declare(strict_types=1);
namespace LanguageServerProtocol;
/**
* A detailed structure defining expected notifications from the client of changes to text documents.
*/
class TextDocumentSyncOptions
{
/**
* Open and close notifications are sent to the server.
* @var bool|null
*/
public $openClose;
/**
* Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full
* and TextDocumentSyncKindIncremental.
* @var int|null
*/
public $change;
/**
* Will save notifications get sent to the server.
* @var bool|null
*/
public $willSave;
/**
* Will save wait until requests get sent to the server.
* @var bool|null
*/
public $willSaveWaitUntil;
/**
* Save notifications are sent to the server.
* @var SaveOptions|null
*/
public $save;
}