Passed
Push — master ( cd2df9...005de6 )
by Aleksei
02:40
created
src/SmartStreamFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $this->converterMatcher = $converterMatcher;
26 26
 
27 27
         $this->addStreamFactory(static fn($data) => $data instanceof \Generator ? new GeneratorStream($data) : null);
28
-        $this->addStreamFactory(function ($data) use ($defaultFactory) {
28
+        $this->addStreamFactory(function($data) use ($defaultFactory) {
29 29
             switch (true) {
30 30
                 case is_string($data):
31 31
                     return $defaultFactory->createStream($data);
Please login to merge, or discard this patch.