Skip to content

Commit

Permalink
Update question emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
relliv committed Nov 16, 2022
1 parent 324b974 commit 0a5d5ee
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Command/New/DefaultController.php
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ private function askQuickSetups(): void
*/
private function askConfigSetup(): void
{
$this->getPrinter()->info("~~~ πŸ“ Add config? (yes/no)");
$this->getPrinter()->info("🟠 Add config❔ (yes/no)");

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

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

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

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

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

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

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

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

$input = new Input();
$userInput = $input->read();
Expand Down

0 comments on commit 0a5d5ee

Please sign in to comment.