We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e827ed commit 56f6cdbCopy full SHA for 56f6cdb
src/Entity/DomainRecord.php
@@ -26,17 +26,17 @@ final class DomainRecord extends AbstractEntity
26
27
public string $name;
28
29
- public string $data;
+ public ?string $data;
30
31
- public int $priority;
+ public ?int $priority;
32
33
- public int $port;
+ public ?int $port;
34
35
public int $ttl;
36
37
- public int $weight;
+ public ?int $weight;
38
39
- public int $flags;
+ public ?int $flags;
40
41
- public string $tag;
+ public ?string $tag;
42
}
0 commit comments