Passed
Push — master ( 39c3f3...8b3aa8 )
by Dominik
02:22
created
src/DeserializerInterface.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\Deserialization;
6 6
 
Please login to merge, or discard this patch.
src/Deserializer/PropertyDeserializerCallback.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\Deserialization\Deserializer;
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\Deserialization\Registry;
6 6
 
Please login to merge, or discard this patch.
src/Mapping/LazyObjectMapping.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\Deserialization\Mapping;
6 6
 
Please login to merge, or discard this patch.
src/Provider/DeserializeProvider.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\Deserialization\Provider;
6 6
 
@@ -18,15 +18,15 @@  discard block
 block discarded – undo
18 18
     {
19 19
         $container['deserializer.emptystringtonull'] = false;
20 20
 
21
-        $container['deserializer.objectmappings'] = function () {
21
+        $container['deserializer.objectmappings'] = function() {
22 22
             return [];
23 23
         };
24 24
 
25
-        $container['deserializer.objectmappingregistry'] = function () use ($container) {
25
+        $container['deserializer.objectmappingregistry'] = function() use ($container) {
26 26
             return new ObjectMappingRegistry($container['deserializer.objectmappings']);
27 27
         };
28 28
 
29
-        $container['deserializer'] = function () use ($container) {
29
+        $container['deserializer'] = function() use ($container) {
30 30
             return new Deserializer(
31 31
                 $container['deserializer.objectmappingregistry'],
32 32
                 $container['deserializer.emptystringtonull'],
Please login to merge, or discard this patch.
src/NotObjectException.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\Deserialization;
6 6
 
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\Deserialization\Registry;
6 6
 
Please login to merge, or discard this patch.
src/Deserializer.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\Deserialization;
6 6
 
Please login to merge, or discard this patch.
src/Deserializer/PropertyDeserializer.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\Deserialization\Deserializer;
6 6
 
Please login to merge, or discard this patch.