Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Maker/MakeAuthenticator.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a Guard authenticator of different flavors';
return 'Create a Guard authenticator of different flavors';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new console command class';
return 'Create a new console command class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new controller class';
return 'Create a new controller class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeCrud.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates CRUD for Doctrine entity class';
return 'Create CRUD for Doctrine entity class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeDockerDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Adds a database container to your docker-compose.yaml file';
return 'Add a database container to your docker-compose.yaml file';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates or updates a Doctrine entity class, and optionally an API Platform resource';
return 'Create or update a Doctrine entity class, and optionally an API Platform resource';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeFixtures.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new class to load Doctrine fixtures';
return 'Create a new class to load Doctrine fixtures';
}

public function configureCommand(Command $command, InputConfiguration $inputConf)
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new form class';
return 'Create a new form class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeFunctionalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new functional test class';
return 'Create a new functional test class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new message and handler';
return 'Create a new message and handler';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeMessengerMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new messenger middleware';
return 'Create a new messenger middleware';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new migration based on database changes';
return 'Create a new migration based on database changes';
}

public function setApplication(Application $application)
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeRegistrationForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new registration form system';
return 'Create a new registration form system';
}

public function configureCommand(Command $command, InputConfiguration $inputConf): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeSerializerEncoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new serializer encoder class';
return 'Create a new serializer encoder class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeSerializerNormalizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new serializer normalizer class';
return 'Create a new serializer normalizer class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeStimulusController.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new Stimulus controller';
return 'Create a new Stimulus controller';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new event subscriber class';
return 'Create a new event subscriber class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static function getCommandAliases(): iterable

public static function getCommandDescription(): string
{
return 'Creates a new test class';
return 'Create a new test class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeTwigComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a twig (or live) component';
return 'Create a twig (or live) component';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeTwigExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new Twig extension with its runtime class';
return 'Create a new Twig extension with its runtime class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new unit test class';
return 'Create a new unit test class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new security user class';
return 'Create a new security user class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new validator and constraint class';
return 'Create a new validator and constraint class';
}

public function configureCommand(Command $command, InputConfiguration $inputConf)
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeVoter.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static function getCommandName(): string

public static function getCommandDescription(): string
{
return 'Creates a new security voter class';
return 'Create a new security voter class';
}

public function configureCommand(Command $command, InputConfiguration $inputConfig): void
Expand Down