In IssueField.php, line 50, change the:
public array $fixVersions = [];
to:
public ?array $fixVersions = null;
This change sets the default value to null, aligning it with other fields. It helps prevent unexpected behavior that might occur when this field is unintentionally set to an empty array.