From 6b0c09e3e5191901b019ad648a8b1d629e4e9b33 Mon Sep 17 00:00:00 2001 From: Phil Young Date: Mon, 9 Sep 2024 16:44:17 +0100 Subject: [PATCH] Fix Larastan in CI A patch release upstream at https://github.com/php-fig/log/releases/tag/3.0.1 broke CI, a PR has been submitted upstream but this will fix CI in the meantime --- tests/Stubs/Log/BadLogger.php | 1 + tests/Stubs/Log/NullLogger.php | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/Stubs/Log/BadLogger.php b/tests/Stubs/Log/BadLogger.php index 58d7993..39adcad 100644 --- a/tests/Stubs/Log/BadLogger.php +++ b/tests/Stubs/Log/BadLogger.php @@ -81,6 +81,7 @@ public function debug(Stringable | string $message, array $context = []): void } /** + * @param mixed $level * @inheritDoc * @throws Exception */ diff --git a/tests/Stubs/Log/NullLogger.php b/tests/Stubs/Log/NullLogger.php index 7d1c97e..6283892 100644 --- a/tests/Stubs/Log/NullLogger.php +++ b/tests/Stubs/Log/NullLogger.php @@ -64,6 +64,7 @@ public function debug(Stringable | string $message, array $context = []): void } /** + * @param mixed $level * @inheritDoc */ public function log($level, Stringable | string $message, array $context = []): void