diff options
Diffstat (limited to 'core/Command/L10n/CreateJs.php')
-rw-r--r-- | core/Command/L10n/CreateJs.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/L10n/CreateJs.php b/core/Command/L10n/CreateJs.php index 2402369d274..bcb68ced472 100644 --- a/core/Command/L10n/CreateJs.php +++ b/core/Command/L10n/CreateJs.php @@ -63,7 +63,7 @@ class CreateJs extends Command implements CompletionAwareInterface { } $languages = $lang; if (empty($lang)) { - $languages= $this->getAllLanguages($path); + $languages = $this->getAllLanguages($path); } foreach ($languages as $lang) { @@ -84,7 +84,7 @@ class CreateJs extends Command implements CompletionAwareInterface { if ($fileInfo->getExtension() !== 'php') { continue; } - $result[]= substr($fileInfo->getBasename(), 0, -4); + $result[] = substr($fileInfo->getBasename(), 0, -4); } return $result; |