From 94b8e32c4c492f75f70123536bf12e66784dc15c Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 6 Mar 2021 09:14:32 +0100 Subject: [PATCH] Fix typo --- src/Symfony/Bundle/FrameworkBundle/Command/YamlLintCommand.php | 2 +- .../Bundle/SecurityBundle/Command/DebugFirewallCommand.php | 2 +- src/Symfony/Bundle/TwigBundle/Command/LintCommand.php | 2 +- .../PasswordHasher/Command/UserPasswordHashCommand.php | 2 +- src/Symfony/Component/Uid/Command/GenerateUlidCommand.php | 2 +- src/Symfony/Component/Uid/Command/GenerateUuidCommand.php | 2 +- src/Symfony/Component/Uid/Command/InspectUlidCommand.php | 2 +- src/Symfony/Component/Uid/Command/InspectUuidCommand.php | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/YamlLintCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/YamlLintCommand.php index fbd74ff606..d8e3d7a296 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/YamlLintCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/YamlLintCommand.php @@ -24,7 +24,7 @@ use Symfony\Component\Yaml\Command\LintCommand as BaseLintCommand; class YamlLintCommand extends BaseLintCommand { protected static $defaultName = 'lint:yaml'; - protected static $defaultDescription = 'Lints a YAML file and outputs encountered errors'; + protected static $defaultDescription = 'Lint a YAML file and outputs encountered errors'; public function __construct() { diff --git a/src/Symfony/Bundle/SecurityBundle/Command/DebugFirewallCommand.php b/src/Symfony/Bundle/SecurityBundle/Command/DebugFirewallCommand.php index c97bff11b4..0c562d9fdd 100644 --- a/src/Symfony/Bundle/SecurityBundle/Command/DebugFirewallCommand.php +++ b/src/Symfony/Bundle/SecurityBundle/Command/DebugFirewallCommand.php @@ -29,7 +29,7 @@ use Symfony\Component\Security\Http\Authenticator\AuthenticatorInterface; final class DebugFirewallCommand extends Command { protected static $defaultName = 'debug:firewall'; - protected static $defaultDescription = 'Displays information about your security firewall(s)'; + protected static $defaultDescription = 'Display information about your security firewall(s)'; private $firewallNames; private $contexts; diff --git a/src/Symfony/Bundle/TwigBundle/Command/LintCommand.php b/src/Symfony/Bundle/TwigBundle/Command/LintCommand.php index 9982876010..7d60001a5c 100644 --- a/src/Symfony/Bundle/TwigBundle/Command/LintCommand.php +++ b/src/Symfony/Bundle/TwigBundle/Command/LintCommand.php @@ -23,7 +23,7 @@ use Symfony\Component\Finder\Finder; final class LintCommand extends BaseLintCommand { protected static $defaultName = 'lint:twig'; - protected static $defaultDescription = 'Lints a Twig template and outputs encountered errors'; + protected static $defaultDescription = 'Lint a Twig template and outputs encountered errors'; /** * {@inheritdoc} diff --git a/src/Symfony/Component/PasswordHasher/Command/UserPasswordHashCommand.php b/src/Symfony/Component/PasswordHasher/Command/UserPasswordHashCommand.php index edee8a2978..2a7d7d1db2 100644 --- a/src/Symfony/Component/PasswordHasher/Command/UserPasswordHashCommand.php +++ b/src/Symfony/Component/PasswordHasher/Command/UserPasswordHashCommand.php @@ -35,7 +35,7 @@ use Symfony\Component\PasswordHasher\LegacyPasswordHasherInterface; class UserPasswordHashCommand extends Command { protected static $defaultName = 'security:hash-password'; - protected static $defaultDescription = 'Hashes a user password'; + protected static $defaultDescription = 'Hash a user password'; private $hasherFactory; private $userClasses; diff --git a/src/Symfony/Component/Uid/Command/GenerateUlidCommand.php b/src/Symfony/Component/Uid/Command/GenerateUlidCommand.php index 7eb1b76abf..2aa87e9804 100644 --- a/src/Symfony/Component/Uid/Command/GenerateUlidCommand.php +++ b/src/Symfony/Component/Uid/Command/GenerateUlidCommand.php @@ -22,7 +22,7 @@ use Symfony\Component\Uid\Factory\UlidFactory; class GenerateUlidCommand extends Command { protected static $defaultName = 'ulid:generate'; - protected static $defaultDescription = 'Generates a ULID'; + protected static $defaultDescription = 'Generate a ULID'; private $factory; diff --git a/src/Symfony/Component/Uid/Command/GenerateUuidCommand.php b/src/Symfony/Component/Uid/Command/GenerateUuidCommand.php index 0e602b08af..63cfb72367 100644 --- a/src/Symfony/Component/Uid/Command/GenerateUuidCommand.php +++ b/src/Symfony/Component/Uid/Command/GenerateUuidCommand.php @@ -23,7 +23,7 @@ use Symfony\Component\Uid\Uuid; class GenerateUuidCommand extends Command { protected static $defaultName = 'uuid:generate'; - protected static $defaultDescription = 'Generates a UUID'; + protected static $defaultDescription = 'Generate a UUID'; private $factory; diff --git a/src/Symfony/Component/Uid/Command/InspectUlidCommand.php b/src/Symfony/Component/Uid/Command/InspectUlidCommand.php index ba6c45c9b8..e95652a798 100644 --- a/src/Symfony/Component/Uid/Command/InspectUlidCommand.php +++ b/src/Symfony/Component/Uid/Command/InspectUlidCommand.php @@ -23,7 +23,7 @@ use Symfony\Component\Uid\Ulid; class InspectUlidCommand extends Command { protected static $defaultName = 'ulid:inspect'; - protected static $defaultDescription = 'Inspects a ULID'; + protected static $defaultDescription = 'Inspect a ULID'; /** * {@inheritdoc} diff --git a/src/Symfony/Component/Uid/Command/InspectUuidCommand.php b/src/Symfony/Component/Uid/Command/InspectUuidCommand.php index 6b6bbf3ed3..4b10b7a8f5 100644 --- a/src/Symfony/Component/Uid/Command/InspectUuidCommand.php +++ b/src/Symfony/Component/Uid/Command/InspectUuidCommand.php @@ -25,7 +25,7 @@ use Symfony\Component\Uid\UuidV6; class InspectUuidCommand extends Command { protected static $defaultName = 'uuid:inspect'; - protected static $defaultDescription = 'Inspects a UUID'; + protected static $defaultDescription = 'Inspect a UUID'; /** * {@inheritdoc}