@@ -21,8 +21,8 @@ |
||
| 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 | /** |
@@ -25,8 +25,8 @@ discard block |
||
| 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 |
||
| 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) { |
@@ -25,8 +25,8 @@ discard block |
||
| 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 |
||
| 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); |
@@ -21,8 +21,8 @@ |
||
| 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 | /** |
@@ -22,7 +22,7 @@ |
||
| 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 | /** |
@@ -21,7 +21,7 @@ |
||
| 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 | /** |