Skip to content

Commit f3d6579

Browse files
authored
Merge pull request #12 from ioigoume/fix-explicit-nullable-parameter
fix-explicit-nullable-parameter
2 parents cf90bb9 + dd29ff1 commit f3d6579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Auth/Source/CAS.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function __construct(array $info, array $config)
122122
* @param \SimpleSAML\Utils\HTTP|null $httpUtils Optional HTTP utilities instance to use
123123
* @return void
124124
*/
125-
protected function initHttpUtils(Utils\HTTP $httpUtils = null): void
125+
protected function initHttpUtils(?Utils\HTTP $httpUtils = null): void
126126
{
127127
if ($httpUtils !== null) {
128128
$this->httpUtils = $httpUtils;

0 commit comments

Comments
 (0)