From eaa641b094d91066924691a0f8abf0905e5de822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reu=CC=88el=20van=20der=20Steege?= Date: Thu, 30 Nov 2023 11:19:46 +0100 Subject: [PATCH] Fix "Deprecated: Creation of dynamic property Pronamic\WordPress\Pay\Extensions\FormidableForms\Extension::$action is deprecated". --- src/Extension.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Extension.php b/src/Extension.php index 8384184..79a659c 100644 --- a/src/Extension.php +++ b/src/Extension.php @@ -43,6 +43,13 @@ class Extension extends AbstractPluginIntegration { */ private static $send_email_now = false; + /** + * Form action. + * + * @var FrmFormAction|null + */ + private $action; + /** * Construct and initializes an Formidable Forms extension object. */