Completed
Push — master ( 204760...d7809c )
by Sebastian
02:32
created
src/Psr7/Message.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,13 +21,13 @@
 block discarded – undo
21 21
 abstract class Message implements MessageInterface
22 22
 {
23 23
     /**
24
-    * @var string Protocol version.
25
-    */
24
+     * @var string Protocol version.
25
+     */
26 26
     protected $protocolVersion = '1.1';
27 27
 
28 28
     /**
29
-    * @var array Allowed protocol versions.
30
-    */
29
+     * @var array Allowed protocol versions.
30
+     */
31 31
     protected static $allowedProtocolVersions = [
32 32
         '1.0' => true,
33 33
         '1.1' => true,
Please login to merge, or discard this patch.
src/Psr7/Uri.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -270,10 +270,10 @@
 block discarded – undo
270 270
 
271 271
         return $this->createUriString(
272 272
             ($scheme !== '') ? $scheme.'://' : '',
273
-               $this->getAuthority(),
274
-               $this->getPath(),
275
-               ($query !== '') ? '?'.$query : '',
276
-               ($fragment !== '') ? '#'.$fragment : ''
273
+                $this->getAuthority(),
274
+                $this->getPath(),
275
+                ($query !== '') ? '?'.$query : '',
276
+                ($fragment !== '') ? '#'.$fragment : ''
277 277
         );
278 278
     }
279 279
 }
Please login to merge, or discard this patch.