Skip to content

Commit 344749f

Browse files
committed
Fixing the property doc blocks to use the full namespace for the classes we want the jsonmapper to initialize
1 parent 2912b04 commit 344749f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Issue/Issue.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Issue implements \JsonSerializable
2020
/** @var string */
2121
public $key;
2222

23-
/** @var IssueField */
23+
/** @var \JiraRestApi\Issue\IssueField */
2424
public $fields;
2525

2626
/** @var array|null */
@@ -41,7 +41,7 @@ class Issue implements \JsonSerializable
4141
/** @var array|null */
4242
public $editmeta;
4343

44-
/** @var ChangeLog|null */
44+
/** @var \JiraRestApi\Issue\ChangeLog|null */
4545
public $changelog;
4646

4747
public function jsonSerialize()

src/Issue/IssueField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class IssueField implements \JsonSerializable
5050
/** @var \JiraRestApi\Issue\Component[] */
5151
public $components;
5252

53-
/** @var Comments */
53+
/** @var \JiraRestApi\Issue\Comments */
5454
public $comment;
5555

5656
/** @var object */

0 commit comments

Comments
 (0)