From 0ede217001a786855dff0b5c89c44bfdd3af4b24 Mon Sep 17 00:00:00 2001 From: Andrej Rypo Date: Fri, 27 Dec 2024 20:08:32 +0100 Subject: [PATCH] update --- tests/support/ProxyLogger.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/support/ProxyLogger.php b/tests/support/ProxyLogger.php index bf2b213..ea6a924 100644 --- a/tests/support/ProxyLogger.php +++ b/tests/support/ProxyLogger.php @@ -20,7 +20,7 @@ public function __construct(callable $fn) $this->fn = $fn; } - public function log($level, $message, array $context = []) + public function log($level, string|\Stringable $message, array $context = []): void { ($this->fn)($level, $message, $context); }