Install psalm as dev, sync scripts updates
This commit is contained in:
19
vendor/felixfbecker/language-server-protocol/src/ReferenceContext.php
vendored
Normal file
19
vendor/felixfbecker/language-server-protocol/src/ReferenceContext.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user