Test Failed
Push — master ( fc67c6...cf2122 )
by Sebastian
56s
created
src/Psr7/UriTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @copyright (c) 2017, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types=1);
10
+declare(strict_types = 1);
11 11
 
12 12
 namespace Linna\Psr7;
13 13
 
Please login to merge, or discard this patch.
src/Psr7/Uri.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -269,9 +269,9 @@
 block discarded – undo
269 269
         $fragment = $this->url['fragment'];
270 270
 
271 271
         return $this->createUriString(($scheme !== '') ? $scheme.'://' : '',
272
-               $this->getAuthority(),
273
-               $this->getPath(),
274
-               ($query !== '') ? '?'.$query : '',
275
-               ($fragment !== '') ? '#'.$fragment : '');
272
+                $this->getAuthority(),
273
+                $this->getPath(),
274
+                ($query !== '') ? '?'.$query : '',
275
+                ($fragment !== '') ? '#'.$fragment : '');
276 276
     }
277 277
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @copyright (c) 2017, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types=1);
10
+declare(strict_types = 1);
11 11
 
12 12
 namespace Linna\Psr7;
13 13
 
Please login to merge, or discard this patch.