@@ -14,7 +14,7 @@ class IssueService extends \JiraRestApi\JiraClient
14
14
*
15
15
* @throws \JsonMapper_Exception
16
16
*
17
- * @return Issue|object
17
+ * @return Issue
18
18
*/
19
19
public function getIssueFromJSON ($ json )
20
20
{
@@ -36,7 +36,7 @@ public function getIssueFromJSON($json)
36
36
* @throws JiraException
37
37
* @throws \JsonMapper_Exception
38
38
*
39
- * @return Issue|object class
39
+ * @return Issue class
40
40
*/
41
41
public function get ($ issueIdOrKey , $ paramArray = [], $ issueObject = null )
42
42
{
@@ -65,7 +65,7 @@ public function get($issueIdOrKey, $paramArray = [], $issueObject = null)
65
65
* @throws JiraException
66
66
* @throws \JsonMapper_Exception
67
67
*
68
- * @return Issue|object created issue key
68
+ * @return Issue created issue key
69
69
*/
70
70
public function create ($ issueField )
71
71
{
@@ -227,7 +227,7 @@ public function update($issueIdOrKey, $issueField, $paramArray = [])
227
227
* @throws JiraException
228
228
* @throws \JsonMapper_Exception
229
229
*
230
- * @return Comment|object Comment class
230
+ * @return Comment Comment class
231
231
*/
232
232
public function addComment ($ issueIdOrKey , $ comment )
233
233
{
@@ -260,7 +260,7 @@ public function addComment($issueIdOrKey, $comment)
260
260
* @throws JiraException
261
261
* @throws \JsonMapper_Exception
262
262
*
263
- * @return Comment|object Comment class
263
+ * @return Comment Comment class
264
264
*/
265
265
public function updateComment ($ issueIdOrKey , $ id , $ comment )
266
266
{
@@ -293,7 +293,7 @@ public function updateComment($issueIdOrKey, $id, $comment)
293
293
* @throws JiraException
294
294
* @throws \JsonMapper_Exception
295
295
*
296
- * @return Comment|object Comment class
296
+ * @return Comment Comment class
297
297
*/
298
298
public function getComment ($ issueIdOrKey , $ id , array $ paramArray = [])
299
299
{
@@ -319,7 +319,7 @@ public function getComment($issueIdOrKey, $id, array $paramArray = [])
319
319
* @throws JiraException
320
320
* @throws \JsonMapper_Exception
321
321
*
322
- * @return Comment|object Comment class
322
+ * @return Comment Comment class
323
323
*/
324
324
public function getComments ($ issueIdOrKey , array $ paramArray = [])
325
325
{
@@ -539,7 +539,7 @@ public function transition($issueIdOrKey, $transition)
539
539
* @throws JiraException
540
540
* @throws \JsonMapper_Exception
541
541
*
542
- * @return IssueSearchResult|object
542
+ * @return IssueSearchResult
543
543
*/
544
544
public function search ($ jql , $ startAt = 0 , $ maxResults = 15 , $ fields = [], $ expand = [], $ validateQuery = true )
545
545
{
@@ -632,7 +632,7 @@ public function timeTracking($issueIdOrKey, $timeTracking)
632
632
* @throws JiraException
633
633
* @throws \JsonMapper_Exception
634
634
*
635
- * @return PaginatedWorklog|object
635
+ * @return PaginatedWorklog
636
636
*/
637
637
public function getWorklog ($ issueIdOrKey )
638
638
{
@@ -655,7 +655,7 @@ public function getWorklog($issueIdOrKey)
655
655
* @throws JiraException
656
656
* @throws \JsonMapper_Exception
657
657
*
658
- * @return Worklog|object PaginatedWorklog object
658
+ * @return Worklog PaginatedWorklog object
659
659
*/
660
660
public function getWorklogById ($ issueIdOrKey , $ workLogId )
661
661
{
@@ -678,7 +678,7 @@ public function getWorklogById($issueIdOrKey, $workLogId)
678
678
* @throws JiraException
679
679
* @throws \JsonMapper_Exception
680
680
*
681
- * @return Worklog|object Worklog Object
681
+ * @return Worklog Worklog Object
682
682
*/
683
683
public function addWorklog ($ issueIdOrKey , $ worklog )
684
684
{
@@ -708,7 +708,7 @@ public function addWorklog($issueIdOrKey, $worklog)
708
708
* @throws JiraException
709
709
* @throws \JsonMapper_Exception
710
710
*
711
- * @return Worklog|object
711
+ * @return Worklog
712
712
*/
713
713
public function editWorklog ($ issueIdOrKey , $ worklog , $ worklogId )
714
714
{
@@ -779,7 +779,7 @@ public function getAllPriorities()
779
779
* @throws JiraException
780
780
* @throws \JsonMapper_Exception
781
781
*
782
- * @return Priority|object priority
782
+ * @return Priority priority
783
783
*/
784
784
public function getPriority ($ priorityId )
785
785
{
@@ -804,7 +804,7 @@ public function getPriority($priorityId)
804
804
* @throws JiraException
805
805
* @throws \JsonMapper_Exception
806
806
*
807
- * @return Priority|object priority
807
+ * @return Priority priority
808
808
*/
809
809
public function getCustomFields ($ priorityId )
810
810
{
0 commit comments