29 lines
480 B
PHP
29 lines
480 B
PHP
|
<?php
|
||
|
|
||
|
namespace LanguageServer\Protocol\Methods;
|
||
|
|
||
|
class InitializeParams
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* The rootPath of the workspace. Is null if no folder is open.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
public $rootPath;
|
||
|
|
||
|
/**
|
||
|
* The process Id of the parent process that started the server.
|
||
|
*
|
||
|
* @var int
|
||
|
*/
|
||
|
public $processId;
|
||
|
|
||
|
/**
|
||
|
* The capabilities provided by the client (editor)
|
||
|
*
|
||
|
* @var ClientCapabilities
|
||
|
*/
|
||
|
public $capabilities;
|
||
|
}
|