From 67da58a5a33442742f2dcf0d655232d643a0b617 Mon Sep 17 00:00:00 2001 From: Kazuto Date: Thu, 16 Mar 2023 08:46:59 +0100 Subject: [PATCH 1/2] feat: set properties in CallWebhookJob to protected --- src/CallWebhookJob.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CallWebhookJob.php b/src/CallWebhookJob.php index b173ccb..5035bf1 100644 --- a/src/CallWebhookJob.php +++ b/src/CallWebhookJob.php @@ -54,11 +54,11 @@ class CallWebhookJob implements ShouldQueue public string $uuid = ''; - private ?Response $response = null; + protected ?Response $response = null; - private ?string $errorType = null; + protected ?string $errorType = null; - private ?string $errorMessage = null; + protected ?string $errorMessage = null; private ?TransferStats $transferStats = null; From ab5a15323cda18cd61bce49cd296099c1375a053 Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Fri, 17 Mar 2023 10:01:06 +0100 Subject: [PATCH 2/2] wip --- src/CallWebhookJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CallWebhookJob.php b/src/CallWebhookJob.php index 5035bf1..ad249dc 100644 --- a/src/CallWebhookJob.php +++ b/src/CallWebhookJob.php @@ -60,7 +60,7 @@ class CallWebhookJob implements ShouldQueue protected ?string $errorMessage = null; - private ?TransferStats $transferStats = null; + protected ?TransferStats $transferStats = null; public function handle() {