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 51e3a2d commit 6f080f4Copy full SHA for 6f080f4
src/Priority/PriorityService.php
@@ -2,7 +2,7 @@
2
3
namespace JiraRestApi\Priority;
4
5
-use \JiraRestApi\Issue\Priority;
+use JiraRestApi\Issue\Priority;
6
7
/**
8
* Class to query priority.
@@ -36,13 +36,14 @@ public function getAll()
36
}
37
38
39
- * get specific priority info
+ * get specific priority info.
40
*
41
* @param $priorityId priority id
42
- * @return \JiraRestApi\Priority\Priority
43
44
* @throws \JiraRestApi\JiraException
45
* @throws \JsonMapper_Exception
+ *
46
+ * @return \JiraRestApi\Priority\Priority
47
*/
48
public function get($priorityId)
49
{
@@ -53,6 +54,5 @@ public function get($priorityId)
53
54
$priority = $this->json_mapper->map(json_decode($ret), new Priority());
55
56
return $priority;
-
57
58
0 commit comments