Skip to content

Commit 9d4506f

Browse files
authored
Merge pull request #143 from Kazuto/feature/set-properties-protected
Change to protected properties `$response`, `$errorType` and `$errorMessage` in `CallWebhookJob`
2 parents 17e06d9 + ab5a153 commit 9d4506f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/CallWebhookJob.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ class CallWebhookJob implements ShouldQueue
5454

5555
public string $uuid = '';
5656

57-
private ?Response $response = null;
57+
protected ?Response $response = null;
5858

59-
private ?string $errorType = null;
59+
protected ?string $errorType = null;
6060

61-
private ?string $errorMessage = null;
61+
protected ?string $errorMessage = null;
6262

63-
private ?TransferStats $transferStats = null;
63+
protected ?TransferStats $transferStats = null;
6464

6565
public function handle()
6666
{

0 commit comments

Comments
 (0)