Skip to content

Commit 99c3aca

Browse files
authored
next page token can be null (#103)
* next page token can be null * Change nextPageToken type to string|null
1 parent 7199f05 commit 99c3aca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Issue/IssueSearchResult.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class IssueSearchResult
99
{
1010
/**
11-
* @var string
11+
* @var string|null
1212
*/
1313
public $nextPageToken;
1414

@@ -18,7 +18,7 @@ class IssueSearchResult
1818
public $issues;
1919

2020
/**
21-
* @return string
21+
* @return string|null
2222
*/
2323
public function getNextPageToken()
2424
{

0 commit comments

Comments
 (0)