chore: update phpstan-baseline.neon.dist for PHPStan 1.8.7

It seems the error message has been changed:
 ------ ----------------------------------------------------------------------------------------------------
  Line   system/CLI/Console.php
 ------ ----------------------------------------------------------------------------------------------------
  71     Strict comparison using === between array<mixed, mixed> and array{} will always evaluate to false.
 ------ ----------------------------------------------------------------------------------------------------
But the $params may be empty array, so it still seems false positive.
This commit is contained in:
kenjis 2022-10-05 08:35:46 +09:00
parent 176b87a591
commit a45a796286
No known key found for this signature in database
GPG Key ID: BD254878922AF198

View File

@ -51,7 +51,7 @@ parameters:
path: system/Cache/Handlers/RedisHandler.php
-
message: "#^Strict comparison using === between array and array{} will always evaluate to false\\.$#"
message: "#^Strict comparison using === between array<mixed, mixed> and array{} will always evaluate to false\\.$#"
count: 1
path: system/CLI/Console.php