Test Failed
Push — v0.2 ( 3f77aa...d94be5 )
by Freddie
02:57
created
src/Shared/Controller/AppController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Simplex\Quickstart\Shared\Controller;
4 4
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,8 @@
 block discarded – undo
48 48
     {
49 49
         try {
50 50
             $command = $this->serializer->deserialize((string) $request->getBody(), $commandClass, parent::JSON_FORMAT);
51
-        } catch (SerializerException $exception) {
51
+        }
52
+        catch (SerializerException $exception) {
52 53
             throw new BadRequestException("Invalid request body", Httpstatuscodes::HTTP_BAD_REQUEST, $exception);
53 54
         }
54 55
 
Please login to merge, or discard this patch.
src/Shared/Testing/HttpRequestCapabilities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Simplex\Quickstart\Shared\Testing;
4 4
 
Please login to merge, or discard this patch.