Skip to content

Commit

Permalink
Merge branch '17.x' of github.com:pH7Software/pH7-Social-Dating-CMS i…
Browse files Browse the repository at this point in the history
…nto 17.x # Please enter a commit message to explain why this merge is

necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message
aborts # the commit.
  • Loading branch information
pH-7 committed Jun 5, 2022
2 parents bd58e0f + 00ce8de commit 2782784
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion _tools/cli/Command/InstallerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ class InstallerCommand extends Command

private const ROOT_PROJECT = PH7_ROOT_PROJECT;
private const INSTALL_DIR_NAME = '_install/';

private const SUCCESS_MESSAGE = 'The installation is now completed! 🤗';

protected function configure(): void
{
Expand Down Expand Up @@ -112,7 +114,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
}

$output->writeln(
$io->success('The installation is now completed! 🤗')
$io->success(self::SUCCESS_MESSAGE)
);

return Command::SUCCESS;
Expand Down

0 comments on commit 2782784

Please sign in to comment.