Passed
Push — main ( 9492df...30ab62 )
by Thomas
02:31
created
src/Handler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     public function renderer(Renderer $renderer, string|array|null $exceptions = null): RendererEntry
64 64
     {
65 65
         if ($exceptions === null) {
66
-            $rendererEntry =  new RendererEntry([], $renderer);
66
+            $rendererEntry = new RendererEntry([], $renderer);
67 67
             $this->defaultRenderer = $rendererEntry;
68 68
 
69 69
             return $rendererEntry;
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
             );
141 141
         }
142 142
 
143
-        $response = $this->responseFactory->createResponse(500)->withHeader('Content-Type', 'text/html') ;
143
+        $response = $this->responseFactory->createResponse(500)->withHeader('Content-Type', 'text/html');
144 144
         $response->getBody()->write('<h1>500 Internal Server Error</h1>');
145 145
 
146 146
         return $response;
Please login to merge, or discard this patch.