From 07f49225d98b43f34132ebd616716ea447f7c3f4 Mon Sep 17 00:00:00 2001 From: Dag Date: Sat, 23 Sep 2023 16:52:39 +0200 Subject: [PATCH] fix: bug in refactor (#3688) --- lib/BridgeAbstract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BridgeAbstract.php b/lib/BridgeAbstract.php index a3d84188..e074ce74 100644 --- a/lib/BridgeAbstract.php +++ b/lib/BridgeAbstract.php @@ -24,7 +24,7 @@ abstract class BridgeAbstract protected array $items = []; protected array $inputs = []; - protected string $queriedContext = ''; + protected ?string $queriedContext = ''; private array $configuration = []; protected CacheInterface $cache;