Skip to content

Commit 5778466

Browse files
committed
refactor: Update Webhooks.php to use nullable type for webhook URLs
1 parent 7006239 commit 5778466

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

app/Livewire/Project/Shared/Webhooks.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ class Webhooks extends Component
99
{
1010
public $resource;
1111

12-
public string $deploywebhook;
12+
public ?string $deploywebhook;
1313

14-
public string $githubManualWebhook;
14+
public ?string $githubManualWebhook;
1515

16-
public string $gitlabManualWebhook;
16+
public ?string $gitlabManualWebhook;
1717

18-
public string $bitbucketManualWebhook;
18+
public ?string $bitbucketManualWebhook;
1919

20-
public string $giteaManualWebhook;
20+
public ?string $giteaManualWebhook;
2121

2222
public ?string $githubManualWebhookSecret = null;
2323

0 commit comments

Comments
 (0)