Completed
Branch master (9763f8)
by Westin
10:35 queued 02:47
created
Category
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/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/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/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/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.
src/Bridge/Psr7RequestBuilderFactory.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/MiddlewareSetupRunner.php 1 patch
Spacing   +3 added lines, -3 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
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     protected function getPipeline()
61 61
     {
62
-        if (file_exists($a = __DIR__ . '/../../../../../config/pipeline.php')) {
62
+        if (file_exists($a = __DIR__.'/../../../../../config/pipeline.php')) {
63 63
             return $a;
64 64
         }
65 65
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     protected function getRoutes()
70 70
     {
71
-        if (file_exists($a = __DIR__ . '/../../../../../config/routes.php')) {
71
+        if (file_exists($a = __DIR__.'/../../../../../config/routes.php')) {
72 72
             return $a;
73 73
         }
74 74
 
Please login to merge, or discard this patch.
src/Bridge/MiddlewareSetupRunnerFactory.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.