Completed
Pull Request — master (#5)
by Moesjarraf
08:07
created
src/DataEnricher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     public function __construct($source)
46 46
     {
47 47
         if (!is_object($source)) {
48
-            throw new \Exception("Data enricher on works on an object, not on a " . gettype($source));
48
+            throw new \Exception("Data enricher on works on an object, not on a ".gettype($source));
49 49
         }
50 50
         
51 51
         $this->source = $source;
Please login to merge, or discard this patch.
src/DataEnricher/Processor/Merge.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         
56 56
         foreach ($merge as $object) { 
57 57
             foreach ($object as $key => $value) {
58
-               $value->$key = $value;
58
+                $value->$key = $value;
59 59
             }
60 60
         }
61 61
         
Please login to merge, or discard this patch.