Completed
Push — master ( 5d917b...4d3943 )
by Dominik
08:16 queued 03:19
created
src/Serializer/Field/CollectionSerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Serialization\Serializer\Field;
6 6
 
Please login to merge, or discard this patch.
src/Serializer/Link/LinkSerializerInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Serialization\Serializer\Link;
6 6
 
Please login to merge, or discard this patch.
src/Serializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Serialization;
6 6
 
Please login to merge, or discard this patch.
src/Mapping/FieldMapping.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Serialization\Mapping;
6 6
 
Please login to merge, or discard this patch.
src/Link/Link.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Serialization\Link;
6 6
 
Please login to merge, or discard this patch.
src/Registry/ObjectMappingRegistryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Serialization\Registry;
6 6
 
Please login to merge, or discard this patch.
src/Accessor/AccessorInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Serialization\Accessor;
6 6
 
Please login to merge, or discard this patch.
src/Provider/SerializationProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Serialization\Provider;
6 6
 
@@ -16,15 +16,15 @@  discard block
 block discarded – undo
16 16
      */
17 17
     public function register(Container $container)
18 18
     {
19
-        $container['serializer.objectmappings'] = function () {
19
+        $container['serializer.objectmappings'] = function() {
20 20
             return [];
21 21
         };
22 22
 
23
-        $container['serializer.objectmappingregistry'] = function () use ($container) {
23
+        $container['serializer.objectmappingregistry'] = function() use ($container) {
24 24
             return new ObjectMappingRegistry($container['serializer.objectmappings']);
25 25
         };
26 26
 
27
-        $container['serializer'] = function () use ($container) {
27
+        $container['serializer'] = function() use ($container) {
28 28
             return new Serializer(
29 29
                 $container['serializer.objectmappingregistry'],
30 30
                 $container['logger'] ?? null
Please login to merge, or discard this patch.
src/Registry/ObjectMappingRegistry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Serialization\Registry;
6 6
 
Please login to merge, or discard this patch.