Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit e47ec9b

Browse files
committed
Small change on output messages
1 parent 8805bc0 commit e47ec9b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/code/Magento/Deploy/Console/Command/App/ConfigStatusCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ protected function execute(InputInterface $input, OutputInterface $output)
5353
{
5454
if ($this->changeDetector->hasChanges()) {
5555
$output->writeln(
56-
'<info>The configuration file has changed. ' .
56+
'<info>Config files have changed. ' .
5757
'Run app:config:import or setup:upgrade command to synchronize configuration.</info>'
5858
);
5959
return self::EXIT_CODE_CONFIG_IMPORT_REQUIRED;
6060
}
61-
$output->writeln('<info>Configuration files are up to date.</info>');
61+
$output->writeln('<info>Config files are up to date.</info>');
6262
return Cli::RETURN_SUCCESS;
6363
}
6464
}

app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigStatusCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ public function executeDataProvider()
6262
return [
6363
'Config is up to date' => [
6464
false,
65-
'Configuration files are up to date.' . PHP_EOL,
65+
'Config files are up to date.' . PHP_EOL,
6666
Cli::RETURN_SUCCESS
6767
],
6868
'Config needs update' => [
6969
true,
70-
'The configuration file has changed. ' .
70+
'Config files have changed. ' .
7171
'Run app:config:import or setup:upgrade command to synchronize configuration.' . PHP_EOL,
7272
ConfigStatusCommand::EXIT_CODE_CONFIG_IMPORT_REQUIRED,
7373
],

0 commit comments

Comments
 (0)