Completed
Push — master ( f06de0...8e99cf )
by Andrew
03:17
created
src/AppWrapper.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use PHPFastCGI\FastCGIDaemon\Http\RequestInterface;
6 6
 use PHPFastCGI\FastCGIDaemon\KernelInterface;
7 7
 use Psr\Http\Message\ResponseInterface;
8
-use Psr\Http\Message\ServerRequestInterface;
9 8
 use Slim\App;
10 9
 use Slim\Container;
11 10
 use Slim\Exception\Exception as SlimException;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     {
49 49
         $serverRequest = $request->getServerRequest();
50 50
 
51
-        $headers  =  new Headers(['Content-Type' => 'text/html']);
51
+        $headers  = new Headers(['Content-Type' => 'text/html']);
52 52
         $response = (new Response(200, $headers))->withProtocolVersion('1.1');
53 53
 
54 54
         try {
Please login to merge, or discard this patch.