- Restored PHP 8.3 compatibility.

This commit is contained in:
Dave M. 2026-01-15 21:04:16 +00:00
parent 78d2d9d291
commit 86fba55a30

View File

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