@@ -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.
0 commit comments