File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ public function jsonSerialize()
22
22
return array_filter (get_object_vars ($ this ));
23
23
}
24
24
25
- function __construct () {
25
+ public function __construct ()
26
+ {
26
27
$ this ->object = new RemoteObject ();
27
28
}
28
29
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public function setInwardIssueByKey(string $issueKey): static
50
50
if ($ this ->inwardIssue === null ) {
51
51
$ this ->inwardIssue = new LinkedIssue ();
52
52
}
53
- $ this ->inwardIssue ->key = $ issueKey ;
53
+ $ this ->inwardIssue ->key = $ issueKey ;
54
54
55
55
return $ this ;
56
56
}
Original file line number Diff line number Diff line change @@ -57,9 +57,11 @@ public function getIssueLinkTypes(): ArrayObject
57
57
58
58
/**
59
59
* @param string $linkId
60
- * @return IssueLink
60
+ *
61
61
* @throws \JiraCloud\JiraException
62
62
* @throws \JsonMapper_Exception
63
+ *
64
+ * @return IssueLink
63
65
*/
64
66
public function getIssueLink (string $ linkId ): IssueLink
65
67
{
@@ -75,7 +77,7 @@ public function getIssueLink(string $linkId): IssueLink
75
77
);
76
78
}
77
79
78
- public function deleteIssueLink (string $ linkId ) : bool
80
+ public function deleteIssueLink (string $ linkId ): bool
79
81
{
80
82
$ this ->log ->info ("deleteIssueLink= \n" );
81
83
@@ -85,5 +87,4 @@ public function deleteIssueLink(string $linkId) : bool
85
87
86
88
return $ ret ;
87
89
}
88
-
89
90
}
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ public function jsonSerialize()
16
16
{
17
17
return array_filter (get_object_vars ($ this ));
18
18
}
19
- }
19
+ }
You can’t perform that action at this time.
0 commit comments