14 lines
184 B
PHP
14 lines
184 B
PHP
|
<?php
|
||
|
|
||
|
namespace LanguageServer\Protocol;
|
||
|
|
||
|
class ReferenceContext
|
||
|
{
|
||
|
/**
|
||
|
* Include the declaration of the current symbol.
|
||
|
*
|
||
|
* @var bool
|
||
|
*/
|
||
|
public $includeDeclaration;
|
||
|
}
|