refactor: Initialize null properties in Github Change component

This commit is contained in:
Andras Bacsai 2024-06-06 11:10:16 +02:00
parent 463021a9f3
commit 8963f4fd62

View File

@ -11,16 +11,16 @@
class Change extends Component
{
public string $webhook_endpoint;
public ?string $ipv4;
public ?string $ipv6;
public ?string $fqdn;
public ?string $ipv4 = null;
public ?string $ipv6 = null;
public ?string $fqdn = null;
public ?bool $default_permissions = true;
public ?bool $preview_deployment_permissions = true;
public ?bool $administration = false;
public $parameters;
public ?GithubApp $github_app;
public ?GithubApp $github_app = null;
public string $name;
public bool $is_system_wide;