Completed
Push — 1.x ( df6631...be02b7 )
by Akihito
14s queued 12s
created
src/Provide/Error/VndError.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
 
75 75
     private function isCodeExists(\Exception $e) : bool
76 76
     {
77
-        if (! ($e instanceof NotFound) && ! ($e instanceof BadRequest) && ! ($e instanceof ServerError)) {
77
+        if (!($e instanceof NotFound) && !($e instanceof BadRequest) && !($e instanceof ServerError)) {
78 78
             return false;
79 79
         }
80 80
 
Please login to merge, or discard this patch.
src/Extension/Router/RouterMatch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
     {
32 32
         $querySymbol = $this->query ? '?' : '';
33 33
 
34
-        return "{$this->method} {$this->path}{$querySymbol}" . \http_build_query($this->query);
34
+        return "{$this->method} {$this->path}{$querySymbol}".\http_build_query($this->query);
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
src/Provide/Transfer/HttpResponder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         }
22 22
 
23 23
         // render
24
-        if (! $ro->view) {
24
+        if (!$ro->view) {
25 25
             $ro->toString();
26 26
         }
27 27
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
         // header
63 63
         foreach ($ro->headers as $label => $value) {
64
-            if (! in_array($label, $allowedHeaderIn304, true)) {
64
+            if (!in_array($label, $allowedHeaderIn304, true)) {
65 65
                 continue;
66 66
             }
67 67
 
Please login to merge, or discard this patch.
src/Provide/Router/WebRouter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $method = \strtolower($server['REQUEST_METHOD']);
34 34
         $match = new RouterMatch;
35 35
         $match->method = $method;
36
-        $match->path = $this->schemeHost . \parse_url($server['REQUEST_URI'], PHP_URL_PATH);
36
+        $match->path = $this->schemeHost.\parse_url($server['REQUEST_URI'], PHP_URL_PATH);
37 37
         $match->query = ($method === 'get') ? $globals['_GET'] : $this->getUnsafeQuery($method, $globals, $server);
38 38
 
39 39
         return $match;
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
             return $put;
65 65
         }
66 66
         $isApplicationJson = strpos($contentType, 'application/json') !== false;
67
-        if (! $isApplicationJson) {
67
+        if (!$isApplicationJson) {
68 68
             return [];
69 69
         }
70 70
         $content = json_decode($rawBody, true);
Please login to merge, or discard this patch.