From 632df00c4cd2bfd1b6e8d46051a9fad6bd665f87 Mon Sep 17 00:00:00 2001 From: Chris Lightfoot-Wild Date: Mon, 28 Aug 2023 15:05:49 +0100 Subject: [PATCH] Laravel linting. --- src/Instrumentation/Laravel/src/HeadersPropagator.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Instrumentation/Laravel/src/HeadersPropagator.php b/src/Instrumentation/Laravel/src/HeadersPropagator.php index f7aa407d..423990e6 100644 --- a/src/Instrumentation/Laravel/src/HeadersPropagator.php +++ b/src/Instrumentation/Laravel/src/HeadersPropagator.php @@ -24,6 +24,7 @@ public static function instance(): self public function keys($carrier): array { assert($carrier instanceof Request); + /** @psalm-suppress InvalidReturnStatement */ return $carrier->headers->keys(); }