Files
development/vendor/felixfbecker/language-server-protocol/src/CodeDescription.php
2023-03-09 16:27:10 +09:00

24 lines
370 B
PHP

<?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;
}
}