- Restored PHP 8.3 compatibility.

This commit is contained in:
Dave M. 2026-01-15 21:04:16 +00:00 committed by Dave Mc Nicoll
parent a4b02607f3
commit 9ff4d6c44d

View File

@ -63,6 +63,6 @@ class HttpFactory implements HttpFactoryInterface
public static function createStream(string $content): StreamInterface
{
return new StreamFactory()->createStream($content);
return (new StreamFactory())->createStream($content);
}
}