Skip to content

Commit d52d75e

Browse files
committed
fix php7 regression
1 parent 394be48 commit d52d75e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

api.include.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2268,7 +2268,7 @@ public function withoutAttribute($attribute): ServerRequestInterface
22682268
*/
22692269
class Stream implements StreamInterface
22702270
{
2271-
function __toString() {}
2271+
function __toString():string { return ""; }
22722272

22732273
/** @var resource|null A resource reference */
22742274
private $stream;

api.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2268,7 +2268,7 @@ public function withoutAttribute($attribute): ServerRequestInterface
22682268
*/
22692269
class Stream implements StreamInterface
22702270
{
2271-
function __toString() {}
2271+
function __toString():string { return ""; }
22722272

22732273
/** @var resource|null A resource reference */
22742274
private $stream;

build.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function run(string $base, array $dirs, string $filename, array $ignore, array $
109109
];
110110

111111
$replaces = [
112-
'use StreamTrait;' => 'function __toString() {}'
112+
'use StreamTrait;' => 'function __toString():string { return ""; }'
113113
];
114114

115115
$directories = ['vendor/nyholm', 'src'];

0 commit comments

Comments
 (0)