Completed
Push — master ( 80d207...26b26f )
by Neomerx
04:47
created
src/PhpUnitTestCase.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      * @param array|object|null               $parsedBody
34 34
      * @param array|null                      $cookies
35 35
      * @param array|null                      $files
36
-     * @param string|resource|StreamInterface $messageBody
36
+     * @param string $messageBody
37 37
      *
38 38
      * @return Sapi
39 39
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
         foreach ($headers as $name => $value) {
190 190
             $name = strtr(strtoupper($name), '-', '_');
191 191
             if ($name !== 'CONTENT_TYPE' && strpos($name, $prefix) !== 0) {
192
-                $name = $prefix . $name;
192
+                $name = $prefix.$name;
193 193
             }
194 194
             $server[$name] = $value;
195 195
         }
Please login to merge, or discard this patch.