Skip to content

Commit f642360

Browse files
committed
Adjusted code style.
1 parent 6efa777 commit f642360

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Mariuzzo/LaravelJsLocalization/Generators/LangJsGenerator.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ protected function getMessages()
103103
$key = str_replace('\\', '.', $key);
104104
$key = str_replace('/', '.', $key);
105105

106-
$messages[$key] = include $path.DIRECTORY_SEPARATOR.$pathName;
106+
$messages[$key] = include $path . DIRECTORY_SEPARATOR . $pathName;
107107
}
108108

109109
return $messages;
@@ -136,7 +136,7 @@ protected function isMessagesExcluded($filePath)
136136
return false;
137137
}
138138

139-
$filePath = str_replace(DIRECTORY_SEPARATOR,'/',$filePath);
139+
$filePath = str_replace(DIRECTORY_SEPARATOR, '/', $filePath);
140140

141141
$localeDirSeparatorPosition = strpos($filePath, '/');
142142
$filePath = substr($filePath, $localeDirSeparatorPosition);

0 commit comments

Comments
 (0)