Files
development/vendor/felixfbecker/language-server-protocol/src/SaveOptions.php
2023-03-09 16:27:10 +09:00

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;
}