16 lines
272 B
PHP
16 lines
272 B
PHP
<?php
|
|
|
|
namespace LanguageServerProtocol;
|
|
|
|
/**
|
|
* Options controlling what is sent to the server with save notifications.
|
|
*/
|
|
class SaveOptions
|
|
{
|
|
/**
|
|
* The client is supposed to include the content on save.
|
|
* @var bool|null
|
|
*/
|
|
public $includeText;
|
|
}
|