Skip to content

Commit 8a6052c

Browse files
HenryVolkmerHenry Volkmer
and
Henry Volkmer
authored
Bugfix implicitly nullable parameter in AbstractBinaryInput::getRawBinary() (#674)
Co-authored-by: Henry Volkmer <[email protected]>
1 parent 079d2b3 commit 8a6052c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PageUtils/AbstractBinaryInput.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function getBase64(?int $timeout = null)
6363
*
6464
* @return string
6565
*/
66-
public function getRawBinary(int $timeout = null): string
66+
public function getRawBinary(?int $timeout = null): string
6767
{
6868
return \base64_decode($this->getBase64($timeout), true);
6969
}

0 commit comments

Comments
 (0)