@@ -14,7 +14,7 @@ class IssueService extends \JiraRestApi\JiraClient
1414 *
1515 * @throws \JsonMapper_Exception
1616 *
17- * @return Issue|object
17+ * @return Issue
1818 */
1919 public function getIssueFromJSON ($ json )
2020 {
@@ -36,7 +36,7 @@ public function getIssueFromJSON($json)
3636 * @throws JiraException
3737 * @throws \JsonMapper_Exception
3838 *
39- * @return Issue|object class
39+ * @return Issue class
4040 */
4141 public function get ($ issueIdOrKey , $ paramArray = [], $ issueObject = null )
4242 {
@@ -65,7 +65,7 @@ public function get($issueIdOrKey, $paramArray = [], $issueObject = null)
6565 * @throws JiraException
6666 * @throws \JsonMapper_Exception
6767 *
68- * @return Issue|object created issue key
68+ * @return Issue created issue key
6969 */
7070 public function create ($ issueField )
7171 {
@@ -227,7 +227,7 @@ public function update($issueIdOrKey, $issueField, $paramArray = [])
227227 * @throws JiraException
228228 * @throws \JsonMapper_Exception
229229 *
230- * @return Comment|object Comment class
230+ * @return Comment Comment class
231231 */
232232 public function addComment ($ issueIdOrKey , $ comment )
233233 {
@@ -260,7 +260,7 @@ public function addComment($issueIdOrKey, $comment)
260260 * @throws JiraException
261261 * @throws \JsonMapper_Exception
262262 *
263- * @return Comment|object Comment class
263+ * @return Comment Comment class
264264 */
265265 public function updateComment ($ issueIdOrKey , $ id , $ comment )
266266 {
@@ -293,7 +293,7 @@ public function updateComment($issueIdOrKey, $id, $comment)
293293 * @throws JiraException
294294 * @throws \JsonMapper_Exception
295295 *
296- * @return Comment|object Comment class
296+ * @return Comment Comment class
297297 */
298298 public function getComment ($ issueIdOrKey , $ id , array $ paramArray = [])
299299 {
@@ -319,7 +319,7 @@ public function getComment($issueIdOrKey, $id, array $paramArray = [])
319319 * @throws JiraException
320320 * @throws \JsonMapper_Exception
321321 *
322- * @return Comment|object Comment class
322+ * @return Comment Comment class
323323 */
324324 public function getComments ($ issueIdOrKey , array $ paramArray = [])
325325 {
@@ -539,7 +539,7 @@ public function transition($issueIdOrKey, $transition)
539539 * @throws JiraException
540540 * @throws \JsonMapper_Exception
541541 *
542- * @return IssueSearchResult|object
542+ * @return IssueSearchResult
543543 */
544544 public function search ($ jql , $ startAt = 0 , $ maxResults = 15 , $ fields = [], $ expand = [], $ validateQuery = true )
545545 {
@@ -632,7 +632,7 @@ public function timeTracking($issueIdOrKey, $timeTracking)
632632 * @throws JiraException
633633 * @throws \JsonMapper_Exception
634634 *
635- * @return PaginatedWorklog|object
635+ * @return PaginatedWorklog
636636 */
637637 public function getWorklog ($ issueIdOrKey )
638638 {
@@ -655,7 +655,7 @@ public function getWorklog($issueIdOrKey)
655655 * @throws JiraException
656656 * @throws \JsonMapper_Exception
657657 *
658- * @return Worklog|object PaginatedWorklog object
658+ * @return Worklog PaginatedWorklog object
659659 */
660660 public function getWorklogById ($ issueIdOrKey , $ workLogId )
661661 {
@@ -678,7 +678,7 @@ public function getWorklogById($issueIdOrKey, $workLogId)
678678 * @throws JiraException
679679 * @throws \JsonMapper_Exception
680680 *
681- * @return Worklog|object Worklog Object
681+ * @return Worklog Worklog Object
682682 */
683683 public function addWorklog ($ issueIdOrKey , $ worklog )
684684 {
@@ -708,7 +708,7 @@ public function addWorklog($issueIdOrKey, $worklog)
708708 * @throws JiraException
709709 * @throws \JsonMapper_Exception
710710 *
711- * @return Worklog|object
711+ * @return Worklog
712712 */
713713 public function editWorklog ($ issueIdOrKey , $ worklog , $ worklogId )
714714 {
@@ -779,7 +779,7 @@ public function getAllPriorities()
779779 * @throws JiraException
780780 * @throws \JsonMapper_Exception
781781 *
782- * @return Priority|object priority
782+ * @return Priority priority
783783 */
784784 public function getPriority ($ priorityId )
785785 {
@@ -804,7 +804,7 @@ public function getPriority($priorityId)
804804 * @throws JiraException
805805 * @throws \JsonMapper_Exception
806806 *
807- * @return Priority|object priority
807+ * @return Priority priority
808808 */
809809 public function getCustomFields ($ priorityId )
810810 {
0 commit comments