refactor: Update Webhooks.php to use nullable type for webhook URLs
This commit is contained in:
parent
7006239b0d
commit
5778466947
1 changed files with 5 additions and 5 deletions
|
|
@ -9,15 +9,15 @@ class Webhooks extends Component
|
|||
{
|
||||
public $resource;
|
||||
|
||||
public string $deploywebhook;
|
||||
public ?string $deploywebhook;
|
||||
|
||||
public string $githubManualWebhook;
|
||||
public ?string $githubManualWebhook;
|
||||
|
||||
public string $gitlabManualWebhook;
|
||||
public ?string $gitlabManualWebhook;
|
||||
|
||||
public string $bitbucketManualWebhook;
|
||||
public ?string $bitbucketManualWebhook;
|
||||
|
||||
public string $giteaManualWebhook;
|
||||
public ?string $giteaManualWebhook;
|
||||
|
||||
public ?string $githubManualWebhookSecret = null;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue