Skip to content

Commit 024550a

Browse files
committed
Remove redundant concat
1 parent 622c387 commit 024550a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Services/DtoPattern.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class DtoPattern
1616
*/
1717
public function setPattern( Handler $handler ): void
1818
{
19-
$fileDir = getenv('PHP_DTO_PATTERNS_DIR') .'/' . $handler->getConfigFile().'.json';
19+
$fileDir = getenv('PHP_DTO_PATTERNS_DIR') .'/' . $handler->getConfigFile();
2020

2121
$resource = fopen($fileDir, 'r');
2222
$patternJson = fread($resource, filesize($fileDir));

0 commit comments

Comments
 (0)