Completed
Push — master ( bc2ccc...f2eb44 )
by Terry
17:34 queued 09:34
created
src/Psr7/Response.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
     public function __construct(
144 144
         int    $status  = 200  ,
145 145
         array  $headers = []   ,
146
-               $body    = ''   ,
146
+                $body    = ''   ,
147 147
         string $version = '1.1',
148 148
         string $reason  = 'OK'
149 149
     ) {
Please login to merge, or discard this patch.
src/Psr7/Request.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,8 +107,8 @@
 block discarded – undo
107 107
      */
108 108
     public function __construct(
109 109
         string $method  = 'GET',
110
-               $uri     = ''   ,
111
-               $body    = ''   ,
110
+                $uri     = ''   ,
111
+                $body    = ''   ,
112 112
         array  $headers = []   ,
113 113
         string $version = '1.1'
114 114
     ) {
Please login to merge, or discard this patch.
src/Psr7/ServerRequest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,8 +96,8 @@
 block discarded – undo
96 96
      */
97 97
     public function __construct(
98 98
         string $method       = 'GET',
99
-               $uri          = ''   ,
100
-               $body         = ''   ,
99
+                $uri          = ''   ,
100
+                $body         = ''   ,
101 101
         array  $headers      = []   ,
102 102
         string $version      = '1.1',
103 103
         array  $serverParams = []   ,
Please login to merge, or discard this patch.
src/Psr7/Utils/UploadedFileHelper.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,13 +28,13 @@
 block discarded – undo
28 28
 class UploadedFileHelper
29 29
 {
30 30
 /**
31
-     * Create an array for PSR-7 Uploaded File needed.
32
-     * 
33
-     * @param array $files     An array generally from $_FILES
34
-     * @param bool  $isConvert To covert and return $files as an UploadedFile instance.
35
-     * 
36
-     * @return array|UploadedFile
37
-     */
31
+ * Create an array for PSR-7 Uploaded File needed.
32
+ * 
33
+ * @param array $files     An array generally from $_FILES
34
+ * @param bool  $isConvert To covert and return $files as an UploadedFile instance.
35
+ * 
36
+ * @return array|UploadedFile
37
+ */
38 38
     public static function uploadedFileParse(array $files)
39 39
     {
40 40
         $specTree = [];
Please login to merge, or discard this patch.