diff --git a/src/Factory/HttpFactory.php b/src/Factory/HttpFactory.php index 390bf4f..ca9c9fb 100644 --- a/src/Factory/HttpFactory.php +++ b/src/Factory/HttpFactory.php @@ -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); } }