Skip to content

Commit 7b6a4c6

Browse files
committed
fixed CS
1 parent c189c4b commit 7b6a4c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Command/TranslationUpdateCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
150150
return;
151151
}
152152

153-
$resultMessage = 'Translation files were successfully updated.';
153+
$resultMessage = 'Translation files were successfully updated';
154154

155155
// show compiled list of messages
156156
if (true === $input->getOption('dump-messages')) {
@@ -206,10 +206,10 @@ protected function execute(InputInterface $input, OutputInterface $output)
206206
$writer->writeTranslations($operation->getResult(), $input->getOption('output-format'), array('path' => $bundleTransPath, 'default_locale' => $this->getContainer()->getParameter('kernel.default_locale')));
207207

208208
if (true === $input->getOption('dump-messages')) {
209-
$resultMessage .= ' and translation files were updated.';
209+
$resultMessage .= ' and translation files were updated';
210210
}
211211
}
212212

213-
$io->success($resultMessage);
213+
$io->success($resultMessage.'.');
214214
}
215215
}

0 commit comments

Comments
 (0)