Skip to content

Commit 8a82484

Browse files
committed
Removed all emojis from the installer.
1 parent 6335ec0 commit 8a82484

31 files changed

Lines changed: 69 additions & 68 deletions

β€Ž.vortex/installer/src/Command/InstallCommand.phpβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
125125
Tui::info('Starting project installation');
126126

127127
Task::action(
128-
label: '⬇️ Downloading Vortex',
128+
label: 'Downloading Vortex',
129129
action: function (): string {
130130
$version = (new Downloader())->download($this->config->get(Config::REPO), $this->config->get(Config::REF), $this->config->get(Config::TMP));
131131
$this->config->set(Config::VERSION, $version);
@@ -138,25 +138,25 @@ protected function execute(InputInterface $input, OutputInterface $output): int
138138
);
139139

140140
Task::action(
141-
label: 'βš™οΈ Customizing Vortex for your project',
141+
label: 'Customizing Vortex for your project',
142142
action: fn() => $this->promptManager->runProcessors(),
143143
success: 'Vortex was customized for your project',
144144
);
145145

146146
Task::action(
147-
label: 'πŸ“ Preparing destination directory',
147+
label: 'Preparing destination directory',
148148
action: fn(): array => $this->prepareDestination(),
149149
success: 'Destination directory is ready',
150150
);
151151

152152
Task::action(
153-
label: '➑️ Copying files to the destination directory',
153+
label: 'Copying files to the destination directory',
154154
action: fn() => $this->copyFiles(),
155155
success: 'Files copied to destination directory',
156156
);
157157

158158
Task::action(
159-
label: '🎭 Preparing demo content',
159+
label: 'Preparing demo content',
160160
action: fn(): string|array => $this->handleDemo(),
161161
success: 'Demo content prepared',
162162
);
@@ -464,11 +464,11 @@ public function footer(): void {
464464
$prefix = ' ';
465465

466466
if ($this->config->isVortexProject()) {
467-
$title = 'Finished updating Vortex πŸš€πŸš€πŸš€';
467+
$title = 'Finished updating Vortex';
468468
$output .= 'Please review the changes and commit the required files.';
469469
}
470470
else {
471-
$title = 'Finished installing Vortex πŸš€πŸš€πŸš€';
471+
$title = 'Finished installing Vortex';
472472
$output .= 'Next steps:' . PHP_EOL;
473473

474474
// Check for required tools and provide conditional instructions.

β€Ž.vortex/installer/src/Prompts/Handlers/AiCodeInstructions.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class AiCodeInstructions extends AbstractHandler {
1414
* {@inheritdoc}
1515
*/
1616
public function label(): string {
17-
return 'πŸ€– AI code assistant instructions';
17+
return 'AI code assistant instructions';
1818
}
1919

2020
/**

β€Ž.vortex/installer/src/Prompts/Handlers/AssignAuthorPr.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class AssignAuthorPr extends AbstractHandler {
1010
* {@inheritdoc}
1111
*/
1212
public function label(): string {
13-
return 'πŸ‘€ Auto-assign the author to their PR?';
13+
return 'Auto-assign the author to their PR?';
1414
}
1515

1616
/**

β€Ž.vortex/installer/src/Prompts/Handlers/CiProvider.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CiProvider extends AbstractHandler {
1818
* {@inheritdoc}
1919
*/
2020
public function label(): string {
21-
return 'πŸ”„ Continuous Integration provider';
21+
return 'Continuous Integration provider';
2222
}
2323

2424
/**

β€Ž.vortex/installer/src/Prompts/Handlers/CodeProvider.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CodeProvider extends AbstractHandler {
1616
* {@inheritdoc}
1717
*/
1818
public function label(): string {
19-
return 'πŸ—„οΈ Repository provider';
19+
return 'Repository provider';
2020
}
2121

2222
/**

β€Ž.vortex/installer/src/Prompts/Handlers/DatabaseDownloadSource.phpβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class DatabaseDownloadSource extends AbstractHandler {
2525
* {@inheritdoc}
2626
*/
2727
public function label(): string {
28-
return 'πŸ“‘ Database source';
28+
return 'Database source';
2929
}
3030

3131
/**
@@ -40,12 +40,12 @@ public function hint(array $responses): ?string {
4040
*/
4141
public function options(array $responses): ?array {
4242
$options = [
43-
self::URL => '🌍 URL download',
44-
self::FTP => 'πŸ“‚ FTP download',
45-
self::ACQUIA => 'πŸ’§ Acquia backup',
46-
self::LAGOON => '🌊 Lagoon environment',
47-
self::CONTAINER_REGISTRY => '🐳 Container registry',
48-
self::NONE => '🚫 None',
43+
self::URL => 'URL download',
44+
self::FTP => 'FTP download',
45+
self::ACQUIA => 'Acquia backup',
46+
self::LAGOON => 'Lagoon environment',
47+
self::CONTAINER_REGISTRY => 'Container registry',
48+
self::NONE => 'None',
4949
];
5050

5151
if (isset($responses[HostingProvider::id()])) {

β€Ž.vortex/installer/src/Prompts/Handlers/DatabaseImage.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class DatabaseImage extends AbstractHandler {
1515
* {@inheritdoc}
1616
*/
1717
public function label(): string {
18-
return '🏷️ What is your database container image name and a tag?';
18+
return 'What is your database container image name and a tag?';
1919
}
2020

2121
/**

β€Ž.vortex/installer/src/Prompts/Handlers/DependencyUpdatesProvider.phpβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class DependencyUpdatesProvider extends AbstractHandler {
1818
* {@inheritdoc}
1919
*/
2020
public function label(): string {
21-
return '⬆️ Dependency updates provider';
21+
return 'Dependency updates provider';
2222
}
2323

2424
/**
@@ -33,9 +33,9 @@ public function hint(array $responses): ?string {
3333
*/
3434
public function options(array $responses): ?array {
3535
return [
36-
self::RENOVATEBOT_APP => 'πŸ€– Renovate GitHub app',
37-
self::RENOVATEBOT_CI => 'πŸ€– + πŸ”„ Renovate self-hosted in CI',
38-
self::NONE => '🚫 None',
36+
self::RENOVATEBOT_APP => 'Renovate GitHub app',
37+
self::RENOVATEBOT_CI => 'Renovate self-hosted in CI',
38+
self::NONE => 'None',
3939
];
4040
}
4141

β€Ž.vortex/installer/src/Prompts/Handlers/DeployType.phpβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class DeployType extends AbstractHandler {
2222
* {@inheritdoc}
2323
*/
2424
public function label(): string {
25-
return '🚚 Deployment types';
25+
return 'Deployment types';
2626
}
2727

2828
/**
@@ -37,10 +37,10 @@ public function hint(array $responses): ?string {
3737
*/
3838
public function options(array $responses): ?array {
3939
$options = [
40-
self::ARTIFACT => 'πŸ“¦ Code artifact',
41-
self::LAGOON => '🌊 Lagoon webhook',
42-
self::CONTAINER_IMAGE => '🐳 Container image',
43-
self::WEBHOOK => '🌐 Custom webhook',
40+
self::ARTIFACT => 'Code artifact',
41+
self::LAGOON => 'Lagoon webhook',
42+
self::CONTAINER_IMAGE => 'Container image',
43+
self::WEBHOOK => 'Custom webhook',
4444
];
4545

4646
// Remove Lagoon option for Acquia hosting.

β€Ž.vortex/installer/src/Prompts/Handlers/Domain.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Domain extends AbstractHandler {
1515
* {@inheritdoc}
1616
*/
1717
public function label(): string {
18-
return '🌐 Public domain';
18+
return 'Public domain';
1919
}
2020

2121
/**

0 commit comments

Comments
Β (0)