Install psalm as dev, sync scripts updates
This commit is contained in:
23
vendor/felixfbecker/language-server-protocol/src/CodeDescription.php
vendored
Normal file
23
vendor/felixfbecker/language-server-protocol/src/CodeDescription.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace LanguageServerProtocol;
|
||||
|
||||
/**
|
||||
* Structure to capture a description for an error code.
|
||||
*
|
||||
* @since 3.16.0
|
||||
*/
|
||||
class CodeDescription
|
||||
{
|
||||
/**
|
||||
* An URI to open with more information about the diagnostic error.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $href;
|
||||
|
||||
public function __construct(string $href)
|
||||
{
|
||||
$this->href = $href;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user