Completed
Push — master ( 641110...6d20fa )
by Alexpts
03:58
created
src/PTS/DataTransformer/MapsManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         }
48 48
 
49 49
         $dir = $this->mapsDirs[$name];
50
-        $map = $this->getByPath($dir . '/' . $type . '.yml');
50
+        $map = $this->getByPath($dir.'/'.$type.'.yml');
51 51
 
52 52
         $this->setCache($name, $type, $map);
53 53
         return $map;
Please login to merge, or discard this patch.
src/PTS/DataTransformer/DataTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         $class = get_class($model);
53 53
         $map = $this->mapsManager->getMap($class, $mapType);
54 54
 
55
-        $fromModelFn= $this->fn->getFromModel();
55
+        $fromModelFn = $this->fn->getFromModel();
56 56
         $props = [];
57 57
 
58 58
         foreach ($map as $dataKey => $propRule) {
Please login to merge, or discard this patch.