Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
…inor CS fix (spaces around parentheses)
  • Loading branch information
Ocramius committed Dec 30, 2014
1 parent 6f3ffb4 commit 6e2dc7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Translator/Loader/Gettext.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public function load($locale, $filename)
array_shift($originalString);

foreach ($originalString as $string) {
if(!isset($textDomain[$string])) {
if (! isset($textDomain[$string])) {
$textDomain[$string] = '';
}
}
Expand Down

0 comments on commit 6e2dc7a

Please # to comment.