Skip to content

Commit 4d1db63

Browse files
committed
Fixed order
1 parent b92fcc6 commit 4d1db63

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Api/Issue/GithubIssueApi.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@
1313
class GithubIssueApi implements IssueApi
1414
{
1515
private $issueCommentApi;
16-
private $botUsername;
16+
private $reviewApi;
1717
private $issueApi;
1818
private $searchApi;
1919
private $timelineApi;
20-
private $reviewApi;
20+
private $botUsername;
2121

2222
public function __construct(Comments $issueCommentApi, Review $reviewApi, Issue $issueApi, Search $searchApi, Timeline $timelineApi, string $botUsername)
2323
{
2424
$this->issueCommentApi = $issueCommentApi;
25+
$this->reviewApi = $reviewApi;
2526
$this->issueApi = $issueApi;
2627
$this->searchApi = $searchApi;
27-
$this->botUsername = $botUsername;
2828
$this->timelineApi = $timelineApi;
29-
$this->reviewApi = $reviewApi;
29+
$this->botUsername = $botUsername;
3030
}
3131

3232
public function open(Repository $repository, string $title, string $body, array $labels)

0 commit comments

Comments
 (0)