20 lines
397 B
PHP
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;
|
|
}
|
|
}
|