Completed
Push — master ( bd62be...5617b5 )
by Jesse
02:31
created
src/ObjectHydrator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     private function __construct(
25 25
         ?Closure $setter
26 26
     ) {
27
-        $this->setter = $setter ?: function (string $attribute, $value): void {
27
+        $this->setter = $setter ?: function(string $attribute, $value): void {
28 28
             $this->$attribute = $value;
29 29
         };
30 30
     }
Please login to merge, or discard this patch.
src/Mapping.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @param MapsProperties $properties The mapping to apply to the input data.
32 32
      * @return Hydrates                  A decorated hydrator that maps the data.
33 33
      */
34
-    public static function for(
34
+    public static function for (
35 35
         Hydrates $hydrator,
36 36
         MapsProperties $properties
37 37
     ): Hydrates {
Please login to merge, or discard this patch.