Skip to content

Commit

Permalink
Allow NULL for setParent (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
larowlan authored Sep 4, 2023
1 parent 5db6bfa commit 006bf1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Issue/IssueField.php
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ public function setParentKeyOrId(string $keyOrId): static
return $this;
}

public function setParent(Issue $parent): void
public function setParent(?Issue $parent): void
{
$this->parent = $parent;
}
Expand Down

0 comments on commit 006bf1f

Please sign in to comment.