Skip to content

Commit b6e770b

Browse files
committedJan 17, 2019
codestyle
1 parent 79a039b commit b6e770b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/MapsManager.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<?php
2+
declare(strict_types=1);
3+
24
namespace PTS\DataTransformer;
35

46
class MapsManager
@@ -31,7 +33,7 @@ public function getMap(string $entityName, string $mapName = 'dto'): array
3133
$map = $this->cache[$entityName][$mapName] ?? null;
3234
if ($map === null) {
3335
$dir = $this->mapsDirs[$entityName];
34-
$rules = require $dir . '/' . $mapName . '.php';
36+
$rules = require $dir.'/'.$mapName.'.php';
3537
$this->cache[$entityName][$mapName] = $this->normalizer->normalize($rules);
3638
}
3739

0 commit comments

Comments
 (0)
Please sign in to comment.