Completed
Push — 1.x ( 3bfa5d...56afe9 )
by Dorian
10:40 queued 08:02
created
src/Handler/SimpleHydratingHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         try {
58 58
             $targetData[$this->key] = $this->parser->parse($rawValue);
59 59
         } catch (ParsingException $exception) {
60
-            throw new HydratingException([ $this->key => $exception->getInnerError() ]);
60
+            throw new HydratingException([$this->key => $exception->getInnerError()]);
61 61
         }
62 62
 
63 63
         $this->validate($targetData, $object);
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                 $validator->validate($parsedData[$this->key], $contextObject);
77 77
             }
78 78
         } catch (ValidationException $exception) {
79
-            throw new HydratingException([ $this->key => $exception->getInnerError() ]);
79
+            throw new HydratingException([$this->key => $exception->getInnerError()]);
80 80
         }
81 81
     }
82 82
 }
Please login to merge, or discard this patch.