fix: fqdn could be null

This commit is contained in:
Andras Bacsai
2023-10-09 11:10:04 +02:00
parent dcaa7a6ad7
commit eb9e2203b0
2 changed files with 16 additions and 2 deletions

View File

@@ -17,10 +17,10 @@ class General extends Component
public Application $application;
public Collection $services;
public string $name;
public string|null $fqdn;
public ?string $fqdn = null;
public string $git_repository;
public string $git_branch;
public string|null $git_commit_sha;
public ?string $git_commit_sha = null;
public string $build_pack;
public bool $is_static;