Completed
Push — master ( 00cbdd...7adf25 )
by Westin
02:40 queued 34s
created
src/Bridge/SwooleResponseEmitter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         $headers = $psr7Response->getHeaders();
28 28
 
29 29
         foreach ($headers as $name => $values) {
30
-            $name  = $this->filterHeader($name);
30
+            $name = $this->filterHeader($name);
31 31
 
32 32
             if ($name === 'Set-Cookie') {
33 33
                 $swooleResponse->header($name, end($values));
Please login to merge, or discard this patch.
src/Bridge/MiddlewareSetupRunner.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@
 block discarded – undo
20 20
     /** @var ContainerInterface */
21 21
     protected $container;
22 22
 
23
-    protected $pipelineFile =  __DIR__ . '/../../../../../config/pipeline.php';
23
+    protected $pipelineFile = __DIR__.'/../../../../../config/pipeline.php';
24 24
 
25
-    protected $routeFile = __DIR__ . '/../../../../../config/routes.php';
25
+    protected $routeFile = __DIR__.'/../../../../../config/routes.php';
26 26
 
27 27
     public function __construct(
28 28
         Application $application,
Please login to merge, or discard this patch.
src/Command/SwooleRunnerCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 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.