You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Server] Make CollectingLogger test fixture compatible with psr/log v1
The anonymous logger in StreamableHttpTransportTest used the v2/v3 method
signature `log($level, \Stringable|string $message, ...)`. Project
composer.json allows psr/log ^1.0 || ^2.0 || ^3.0, so on `--prefer-lowest`
CI installs v1 which keeps the untyped parameter and fatals on LSP
incompatibility. Drop the type hint to keep the fixture working across
all three major versions.
0 commit comments