From 63f6bd3167bd15ec1a4240448cd704da535f2e7d Mon Sep 17 00:00:00 2001 From: Johannes <56792071+h4or@users.noreply.github.com> Date: Thu, 12 Mar 2026 11:06:46 +0100 Subject: [PATCH] Fix to ensure support for both Livewire v3 and v4 First appeared in https://github.com/wire-elements/livewire-strict/issues/4 --- src/Features/SupportSignedActions/SupportSignedActions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Features/SupportSignedActions/SupportSignedActions.php b/src/Features/SupportSignedActions/SupportSignedActions.php index 3f02379..b211cb6 100644 --- a/src/Features/SupportSignedActions/SupportSignedActions.php +++ b/src/Features/SupportSignedActions/SupportSignedActions.php @@ -18,7 +18,7 @@ class SupportSignedActions extends ComponentHook public static ?int $ttl = null; - public function call($method, $params, $returnEarly, $metadata, $componentContext) + public function call($method, $params, $returnEarly, $metadata = null, $componentContext = null) { if (self::$enabled === false) { return;