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

20 lines
397 B
PHP

<?php
namespace LanguageServerProtocol;
class ReferenceContext
{
/**
* Include the declaration of the current symbol.
*
* @var bool
*/
public $includeDeclaration;
public function __construct(bool $includeDeclaration = null)
{
/** @psalm-suppress PossiblyNullPropertyAssignmentValue */
$this->includeDeclaration = $includeDeclaration;
}
}