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.
2 parents a6a96c0 + efb2951 commit 257821aCopy full SHA for 257821a
src/Issue/IssueSearchResult.php
@@ -17,7 +17,7 @@ class IssueSearchResult
17
/**
18
* @var string
19
*/
20
- public $expand;
+ public ?string $expand = null;
21
22
23
* @var int
@@ -114,17 +114,14 @@ public function getIssue($ndx)
114
}
115
116
117
- * @return string
+ * @return ?string
118
119
public function getExpand()
120
{
121
return $this->expand;
122
123
124
- /**
125
- * @param string $expand
126
- */
127
- public function setExpand($expand)
+ public function setExpand(?string $expand)
128
129
$this->expand = $expand;
130
0 commit comments