Completed
Push — master ( b2ef28...1bb678 )
by Alexpts
03:43
created
src/PTS/DataTransformer/DataTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace PTS\DataTransformer;
5 5
 
Please login to merge, or discard this patch.
src/PTS/DataTransformer/MapsManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace PTS\DataTransformer;
5 5
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         }
33 33
 
34 34
         $dir = $this->mapsDirs[$name];
35
-        $map = $this->getByPath($dir . '/' . $type . '.yml');
35
+        $map = $this->getByPath($dir.'/'.$type.'.yml');
36 36
 
37 37
         $this->setCache($name, $type, $map);
38 38
         return $map;
@@ -54,6 +54,6 @@  discard block
 block discarded – undo
54 54
 
55 55
     protected function getByPath(string $path): array
56 56
     {
57
-        return (array)$this->yamlParser->parse(file_get_contents($path));
57
+        return (array) $this->yamlParser->parse(file_get_contents($path));
58 58
     }
59 59
 }
Please login to merge, or discard this patch.
src/PTS/DataTransformer/TypeConverter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace PTS\DataTransformer;
5 5
 
Please login to merge, or discard this patch.
src/PTS/DataTransformer/PropRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace PTS\DataTransformer;
5 5
 
Please login to merge, or discard this patch.
src/PTS/DataTransformer/TypeException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace PTS\DataTransformer;
5 5
 
Please login to merge, or discard this patch.
src/PTS/DataTransformer/ModelClosure.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace PTS\DataTransformer;
5 5
 
Please login to merge, or discard this patch.
src/PTS/DataTransformer/DataTransformerInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace PTS\DataTransformer;
5 5
 
Please login to merge, or discard this patch.