Skip to content

Commit

Permalink
change question
Browse files Browse the repository at this point in the history
  • Loading branch information
milwad-dev committed Feb 4, 2024
1 parent 388bda9 commit c7bc730
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Traits/CommonTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait CommonTrait
*/
private function extraOption(): string|array
{
return $this->choice('You want something extra?', OptionData::$options, 0);
return $this->choice('Do you want something extra?', OptionData::$options, 0);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/MakeCrudTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class MakeCrudTest extends BaseTest
use MakeCrudTestTrait;

private string $name = 'Product';
private string $question = 'You want something extra?';
private string $question = 'Do you want something extra?';
private string $command = 'crud:make';

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/Modules/MakeCrudModuleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class MakeCrudModuleTest extends BaseTest

private ?string $module;

private string $question = 'You want something extra?';
private string $question = 'Do you want something extra?';

protected function setUp(): void
{
Expand Down

0 comments on commit c7bc730

Please sign in to comment.