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.
2 parents c05eee2 + 893193c commit 8675c0dCopy full SHA for 8675c0d
src/Issue/IssueField.php
@@ -229,6 +229,24 @@ public function setReporterName($name)
229
return $this;
230
}
231
232
+ /**
233
+ * set issue reporter accountId.
234
+ *
235
+ * @param string $accountId
236
237
+ * @return $this
238
+ */
239
+ public function setReporterAccountId($accountId)
240
+ {
241
+ if (is_null($this->reporter)) {
242
+ $this->reporter = new Reporter();
243
+ }
244
+
245
+ $this->reporter->accountId = $accountId;
246
247
+ return $this;
248
249
250
/**
251
* set issue assignee name.
252
*
0 commit comments