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 ea20fc0 commit b299927Copy full SHA for b299927
src/IssueLink/IssueLink.php
@@ -45,7 +45,8 @@ public function setLinkTypeName($typeName)
45
*/
46
public function setInwardIssue(string $issueKey): static
47
{
48
- $this->inwardIssue['key'] = $issueKey;
+ $this->inwardIssue = new Issue();
49
+ $this->inwardIssue->key = $issueKey;
50
51
return $this;
52
}
@@ -57,7 +58,8 @@ public function setInwardIssue(string $issueKey): static
57
58
59
public function setOutwardIssue(string $issueKey): static
60
- $this->outwardIssue['key'] = $issueKey;
61
+ $this->outwardIssue = new Issue();
62
+ $this->outwardIssue->key = $issueKey;
63
64
65
0 commit comments