Completed
Push — master ( dd6b15...3be450 )
by Cedric
02:47
created
src/Service/AbstractService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
 
62 62
         $object = $this->serializer->deserialize($json, $type, 'json', $context);
63 63
 
64
-        if(!$object instanceof $type){
64
+        if (!$object instanceof $type) {
65 65
             return null;
66 66
         }
67 67
 
Please login to merge, or discard this patch.
src/Service/ContentService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
     public function findById($id)
52 52
     {
53
-        $content = $this->get('content/' . $id);
53
+        $content = $this->get('content/'.$id);
54 54
         return $this->deserialize(
55 55
             $content,
56 56
             Content::class
Please login to merge, or discard this patch.