mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 18:36:58 +01:00
more fixes
This commit is contained in:
parent
2d8cc8d623
commit
b0bd2e0831
@ -700,7 +700,7 @@ class LanguageServer extends Dispatcher
|
|||||||
if ($this->client->clientConfiguration->onChangeDebounceMs === null) {
|
if ($this->client->clientConfiguration->onChangeDebounceMs === null) {
|
||||||
$this->doVersionedAnalysis($files, $version);
|
$this->doVersionedAnalysis($files, $version);
|
||||||
} else {
|
} else {
|
||||||
/** @psalm-suppress MixedAssignment */
|
/** @psalm-suppress MixedAssignment,UnusedPsalmSuppress */
|
||||||
$this->versionedAnalysisDelayToken = Loop::delay(
|
$this->versionedAnalysisDelayToken = Loop::delay(
|
||||||
$this->client->clientConfiguration->onChangeDebounceMs,
|
$this->client->clientConfiguration->onChangeDebounceMs,
|
||||||
function () use ($files, $version) {
|
function () use ($files, $version) {
|
||||||
@ -912,7 +912,6 @@ class LanguageServer extends Dispatcher
|
|||||||
* Log Throwable Error
|
* Log Throwable Error
|
||||||
*
|
*
|
||||||
* @param Throwable $throwable
|
* @param Throwable $throwable
|
||||||
* @psalm-suppress PossiblyUnusedMethod
|
|
||||||
*/
|
*/
|
||||||
public function logThrowable(Throwable $throwable): void
|
public function logThrowable(Throwable $throwable): void
|
||||||
{
|
{
|
||||||
@ -924,7 +923,6 @@ class LanguageServer extends Dispatcher
|
|||||||
*
|
*
|
||||||
* @param string $message
|
* @param string $message
|
||||||
* @param array $context
|
* @param array $context
|
||||||
* @psalm-suppress PossiblyUnusedMethod
|
|
||||||
*/
|
*/
|
||||||
public function logError(string $message, array $context = []): void
|
public function logError(string $message, array $context = []): void
|
||||||
{
|
{
|
||||||
@ -948,7 +946,6 @@ class LanguageServer extends Dispatcher
|
|||||||
*
|
*
|
||||||
* @param string $message
|
* @param string $message
|
||||||
* @param array $context
|
* @param array $context
|
||||||
* @psalm-suppress PossiblyUnusedMethod
|
|
||||||
*/
|
*/
|
||||||
public function logInfo(string $message, array $context = []): void
|
public function logInfo(string $message, array $context = []): void
|
||||||
{
|
{
|
||||||
@ -960,7 +957,6 @@ class LanguageServer extends Dispatcher
|
|||||||
*
|
*
|
||||||
* @param string $message
|
* @param string $message
|
||||||
* @param array $context
|
* @param array $context
|
||||||
* @psalm-suppress PossiblyUnusedMethod
|
|
||||||
*/
|
*/
|
||||||
public function logDebug(string $message, array $context = []): void
|
public function logDebug(string $message, array $context = []): void
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user