Completed
Push — master ( 9763f8...278b18 )
by Westin
16:38 queued 06:42
created
src/Exception/MissingRoutesException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\SwooleExpressive\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Bridge/SwooleResponseEmitterFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\SwooleExpressive\Bridge;
5 5
 
Please login to merge, or discard this patch.
src/Bridge/SwooleResponseEmitter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\SwooleExpressive\Bridge;
5 5
 
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         $headers = $psr7Response->getHeaders();
32 32
 
33 33
         foreach ($headers as $name => $values) {
34
-            $name  = $this->filterHeader($name);
34
+            $name = $this->filterHeader($name);
35 35
 
36 36
             if ($name === 'Set-Cookie') {
37 37
                 $swooleResponse->header($name, end($values));
Please login to merge, or discard this patch.
src/Command/SwooleRunnerCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\SwooleExpressive\Command;
5 5
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 
92 92
         $http->on(
93 93
             'request',
94
-            function (Request $request, Response $response) use ($app, $requestBuilder, $responseEmitter) {
94
+            function(Request $request, Response $response) use ($app, $requestBuilder, $responseEmitter) {
95 95
                 $psrResponse = $app->handle($requestBuilder->build($request));
96 96
                 $responseEmitter->toSwoole($psrResponse, $response);
97 97
             }
Please login to merge, or discard this patch.
src/Command/SwooleRunnerCommandFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\SwooleExpressive\Command;
5 5
 
Please login to merge, or discard this patch.
src/ConfigProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\SwooleExpressive;
5 5
 
Please login to merge, or discard this patch.
src/Exception/SwooleExpressiveException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\SwooleExpressive\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Exception/MissingPipeLineException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\SwooleExpressive\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Bridge/Psr7RequestBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\SwooleExpressive\Bridge;
5 5
 
Please login to merge, or discard this patch.