Completed
Push — master ( 78bf9a...d3bc1d )
by Jesse
06:57
created
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.
src/ObjectDeserializer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
 
27 27
     private function __construct(Instantiator $instance, Hydrator $hydrate)
28 28
     {
29
-        $this->make = $instance;
30
-        $this->hydrator = $hydrate;
29
+        $this->make=$instance;
30
+        $this->hydrator=$hydrate;
31 31
     }
32 32
 
33 33
     /**
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     /** @inheritdoc */
71 71
     public function from(array $input): object
72 72
     {
73
-        $object = $this->make->instance();
73
+        $object=$this->make->instance();
74 74
         try {
75 75
             $this->hydrator->writeTo($object, $input);
76 76
         } catch (HydrationFailure $exception) {
Please login to merge, or discard this patch.
src/ForDataSets.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
22 22
 
23 23
     private function __construct(Satisfiable $condition, Deserializer $deserialize)
24 24
     {
25
-        $this->condition = $condition;
26
-        $this->deserialize = $deserialize;
25
+        $this->condition=$condition;
26
+        $this->deserialize=$deserialize;
27 27
     }
28 28
 
29 29
     /**
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
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
 
28 28
     private function __construct(Instantiator $instance, Hydrator $hydrate)
29 29
     {
30
-        $this->make = $instance;
31
-        $this->hydrator = $hydrate;
30
+        $this->make=$instance;
31
+        $this->hydrator=$hydrate;
32 32
     }
33 33
 
34 34
     /**
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /** @inheritdoc */
80 80
     public function from(array $input): iterable
81 81
     {
82
-        $collection = $this->make->instance();
82
+        $collection=$this->make->instance();
83 83
         $this->mustBeValid($collection, $input);
84 84
         try {
85 85
             $this->hydrator->writeTo($collection, $input);
Please login to merge, or discard this patch.