Install psalm as dev, sync scripts updates
This commit is contained in:
21
vendor/felixfbecker/language-server-protocol/src/CodeActionDisabled.php
vendored
Normal file
21
vendor/felixfbecker/language-server-protocol/src/CodeActionDisabled.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace LanguageServerProtocol;
|
||||
|
||||
class CodeActionDisabled
|
||||
{
|
||||
/**
|
||||
* Human readable description of why the code action is currently
|
||||
* disabled.
|
||||
*
|
||||
* This is displayed in the code actions UI.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $reason;
|
||||
|
||||
public function __construct(string $reason)
|
||||
{
|
||||
$this->reason = $reason;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user