Passed
Push — master ( 4e0b7a...2098f7 )
by Dominik
02:20
created
src/Accessor/PropertyAccessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         }
37 37
 
38 38
         $getter = \Closure::bind(
39
-            function ($property) {
39
+            function($property) {
40 40
                 return $this->{$property};
41 41
             },
42 42
             $object,
Please login to merge, or discard this patch.
src/Provider/SerializationProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,30 +24,30 @@
 block discarded – undo
24 24
      */
25 25
     public function register(Container $container): void
26 26
     {
27
-        $container['serializer'] = function () use ($container) {
27
+        $container['serializer'] = function() use ($container) {
28 28
             return new Serializer($container['serializer.normalizer'], $container['serializer.encoder']);
29 29
         };
30 30
 
31
-        $container['serializer.normalizer'] = function () use ($container) {
31
+        $container['serializer.normalizer'] = function() use ($container) {
32 32
             return new Normalizer(
33 33
                 $container['serializer.normalizer.objectmappingregistry'],
34 34
                 $container['logger'] ?? null
35 35
             );
36 36
         };
37 37
 
38
-        $container['serializer.normalizer.objectmappingregistry'] = function () use ($container) {
38
+        $container['serializer.normalizer.objectmappingregistry'] = function() use ($container) {
39 39
             return new NormalizerObjectMappingRegistry($container['serializer.normalizer.objectmappings']);
40 40
         };
41 41
 
42
-        $container['serializer.normalizer.objectmappings'] = function () {
42
+        $container['serializer.normalizer.objectmappings'] = function() {
43 43
             return [];
44 44
         };
45 45
 
46
-        $container['serializer.encoder'] = function () use ($container) {
46
+        $container['serializer.encoder'] = function() use ($container) {
47 47
             return new Encoder($container['serializer.encodertypes']);
48 48
         };
49 49
 
50
-        $container['serializer.encodertypes'] = function () {
50
+        $container['serializer.encodertypes'] = function() {
51 51
             $encoderTypes = [];
52 52
 
53 53
             $encoderTypes[] = new JsonTypeEncoder();
Please login to merge, or discard this patch.