From 9bcf458537becfa6a2c8afbd2767f3d4fe269b75 Mon Sep 17 00:00:00 2001 From: "sergei.baikin" Date: Wed, 29 Mar 2023 11:02:32 +0200 Subject: [PATCH] Fix types --- src/Laravel/LaravelLoggerCreating.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Laravel/LaravelLoggerCreating.php b/src/Laravel/LaravelLoggerCreating.php index 3859686..1200307 100644 --- a/src/Laravel/LaravelLoggerCreating.php +++ b/src/Laravel/LaravelLoggerCreating.php @@ -29,7 +29,7 @@ public function __invoke(array $config) $channel = $config['channel']; /** @var ProcessorInterface[] $processors */ $processors = $config['processors'] ?? []; - /** @var array, non-empty-list> $exceptionContexts */ + /** @var array> $exceptionContexts */ $exceptionContexts = $config['exceptionContexts'] ?? []; /** @var int $level */ $level = $config['level'] ?? Level::Debug;