Passed
Branch master (532ae0)
by Jesse
03:47
created
Category
src/ForDataSets.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
 
22 22
     private function __construct(Satisfiable $condition, Deserializes $deserialize)
23 23
     {
24
-        $this->condition = $condition;
25
-        $this->deserialize = $deserialize;
24
+        $this->condition=$condition;
25
+        $this->deserialize=$deserialize;
26 26
     }
27 27
 
28 28
     /**
Please login to merge, or discard this patch.
src/ObjectDeserializer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
 
26 26
     private function __construct(ProvidesInstances $instance, Hydrates $hydrate)
27 27
     {
28
-        $this->make = $instance;
29
-        $this->hydrator = $hydrate;
28
+        $this->make=$instance;
29
+        $this->hydrator=$hydrate;
30 30
     }
31 31
 
32 32
     /**
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /** @inheritdoc */
70 70
     public function from(array $input): object
71 71
     {
72
-        $object = $this->make->instance();
72
+        $object=$this->make->instance();
73 73
         try {
74 74
             $this->hydrator->writeTo($object, $input);
75 75
         } catch (CannotHydrate $exception) {
Please login to merge, or discard this patch.
src/CollectionDeserializer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
 
26 26
     private function __construct(ProvidesInstances $instance, Hydrates $hydrate)
27 27
     {
28
-        $this->make = $instance;
29
-        $this->hydrator = $hydrate;
28
+        $this->make=$instance;
29
+        $this->hydrator=$hydrate;
30 30
     }
31 31
 
32 32
     /**
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /** @inheritdoc */
63 63
     public function from(array $input): iterable
64 64
     {
65
-        $collection = $this->make->instance();
65
+        $collection=$this->make->instance();
66 66
         $this->mustBeValid($collection, $input);
67 67
         try {
68 68
             $this->hydrator->writeTo($collection, $input);
Please login to merge, or discard this patch.
src/Condition/HaveTheDiscriminatorValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
 
22 22
     private function __construct(string $key, string $value)
23 23
     {
24
-        $this->key = $key;
25
-        $this->value = $value;
24
+        $this->key=$key;
25
+        $this->value=$value;
26 26
     }
27 27
 
28 28
     /**
Please login to merge, or discard this patch.
src/Condition/ConsistOfItems.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     private function __construct(Satisfiable $condition)
24 24
     {
25
-        $this->condition = $condition;
25
+        $this->condition=$condition;
26 26
     }
27 27
 
28 28
     /**
Please login to merge, or discard this patch.
src/Condition/AreOfType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     private function __construct(string $expectation)
23 23
     {
24
-        $this->expectation = $expectation;
24
+        $this->expectation=$expectation;
25 25
     }
26 26
 
27 27
     /**
Please login to merge, or discard this patch.