1
0
Fork 0
php-language-server/src/Protocol/Methods/InitializeParams.php

29 lines
480 B
PHP
Raw Normal View History

2016-08-22 15:32:31 +00:00
<?php
2016-08-23 09:21:37 +00:00
namespace LanguageServer\Protocol\Methods;
2016-08-22 15:32:31 +00:00
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.
*
2016-08-22 20:40:16 +00:00
* @var int
2016-08-22 15:32:31 +00:00
*/
public $processId;
/**
* The capabilities provided by the client (editor)
*
* @var ClientCapabilities
*/
public $capabilities;
}