Skip to content

Commit 0a5d5ee

Browse files
committed
Update question emojis
1 parent 324b974 commit 0a5d5ee

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

β€Žsrc/Command/New/DefaultController.phpβ€Ž

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ private function askQuickSetups(): void
404404
*/
405405
private function askConfigSetup(): void
406406
{
407-
$this->getPrinter()->info("~~~ πŸ“ Add config? (yes/no)");
407+
$this->getPrinter()->info("🟠 Add config❔ (yes/no)");
408408

409409
$input = new Input();
410410
$userInput = $input->read();
@@ -417,7 +417,7 @@ private function askConfigSetup(): void
417417
*/
418418
private function askDatabaseSetup(): void
419419
{
420-
$this->getPrinter()->info("~~~ πŸ“ Add database? (yes/no)");
420+
$this->getPrinter()->info("🟠 Add database❔ (yes/no)");
421421

422422
$input = new Input();
423423
$userInput = $input->read();
@@ -430,7 +430,7 @@ private function askDatabaseSetup(): void
430430
*/
431431
private function askFacadeSetup(): void
432432
{
433-
$this->getPrinter()->info("~~~ πŸ“ Add facade? (yes/no)");
433+
$this->getPrinter()->info("🟠 Add facade❔ (yes/no)");
434434

435435
$input = new Input();
436436
$userInput = $input->read();
@@ -443,7 +443,7 @@ private function askFacadeSetup(): void
443443
*/
444444
private function askResourcesSetup(): void
445445
{
446-
$this->getPrinter()->info("~~~ πŸ“ Add resources? (yes/no)");
446+
$this->getPrinter()->info("🟠 Add resources❔ (yes/no)");
447447

448448
$input = new Input();
449449
$userInput = $input->read();
@@ -456,7 +456,7 @@ private function askResourcesSetup(): void
456456
*/
457457
private function askConsoleSetup(): void
458458
{
459-
$this->getPrinter()->info("~~~ πŸ“ Add commands? (yes/no)");
459+
$this->getPrinter()->info("🟠 Add commands❔ (yes/no)");
460460

461461
$input = new Input();
462462
$userInput = $input->read();
@@ -469,7 +469,7 @@ private function askConsoleSetup(): void
469469
*/
470470
private function askRoutesSetup(): void
471471
{
472-
$this->getPrinter()->info("~~~ πŸ“ Add routes? (yes/no)");
472+
$this->getPrinter()->info("🟠 Add routes❔ (yes/no)");
473473

474474
$input = new Input();
475475
$userInput = $input->read();
@@ -503,7 +503,7 @@ private function askPreConfigs(): void
503503
*/
504504
private function askPhpStan(): void
505505
{
506-
$this->getPrinter()->info("~~~ πŸ“ Add PHPStan for linting? (yes/no)");
506+
$this->getPrinter()->info("🟠 Add PHPStan for linting❔ (yes/no)");
507507

508508
$input = new Input();
509509
$userInput = $input->read();
@@ -516,7 +516,7 @@ private function askPhpStan(): void
516516
*/
517517
private function askPest(): void
518518
{
519-
$this->getPrinter()->info("~~~ πŸ“ Add Pest for testing? (yes/no)");
519+
$this->getPrinter()->info("🟠 Add Pest for testing❔ (yes/no)");
520520

521521
$input = new Input();
522522
$userInput = $input->read();
@@ -529,7 +529,7 @@ private function askPest(): void
529529
*/
530530
private function askPhpCsFixer(): void
531531
{
532-
$this->getPrinter()->info("~~~ πŸ“ Add PHP-CS-Fixer for fixing coding standards issues? (yes/no)");
532+
$this->getPrinter()->info("🟠 Add PHP-CS-Fixer for fixing coding standards issues❔ (yes/no)");
533533

534534
$input = new Input();
535535
$userInput = $input->read();

0 commit comments

Comments
Β (0)