This commit is contained in:
Fabien Potencier 2021-03-06 09:14:32 +01:00
parent f467708b06
commit 94b8e32c4c
8 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,7 @@ use Symfony\Component\Yaml\Command\LintCommand as BaseLintCommand;
class YamlLintCommand extends BaseLintCommand class YamlLintCommand extends BaseLintCommand
{ {
protected static $defaultName = 'lint:yaml'; 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() public function __construct()
{ {

View File

@ -29,7 +29,7 @@ use Symfony\Component\Security\Http\Authenticator\AuthenticatorInterface;
final class DebugFirewallCommand extends Command final class DebugFirewallCommand extends Command
{ {
protected static $defaultName = 'debug:firewall'; 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 $firewallNames;
private $contexts; private $contexts;

View File

@ -23,7 +23,7 @@ use Symfony\Component\Finder\Finder;
final class LintCommand extends BaseLintCommand final class LintCommand extends BaseLintCommand
{ {
protected static $defaultName = 'lint:twig'; 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} * {@inheritdoc}

View File

@ -35,7 +35,7 @@ use Symfony\Component\PasswordHasher\LegacyPasswordHasherInterface;
class UserPasswordHashCommand extends Command class UserPasswordHashCommand extends Command
{ {
protected static $defaultName = 'security:hash-password'; protected static $defaultName = 'security:hash-password';
protected static $defaultDescription = 'Hashes a user password'; protected static $defaultDescription = 'Hash a user password';
private $hasherFactory; private $hasherFactory;
private $userClasses; private $userClasses;

View File

@ -22,7 +22,7 @@ use Symfony\Component\Uid\Factory\UlidFactory;
class GenerateUlidCommand extends Command class GenerateUlidCommand extends Command
{ {
protected static $defaultName = 'ulid:generate'; protected static $defaultName = 'ulid:generate';
protected static $defaultDescription = 'Generates a ULID'; protected static $defaultDescription = 'Generate a ULID';
private $factory; private $factory;

View File

@ -23,7 +23,7 @@ use Symfony\Component\Uid\Uuid;
class GenerateUuidCommand extends Command class GenerateUuidCommand extends Command
{ {
protected static $defaultName = 'uuid:generate'; protected static $defaultName = 'uuid:generate';
protected static $defaultDescription = 'Generates a UUID'; protected static $defaultDescription = 'Generate a UUID';
private $factory; private $factory;

View File

@ -23,7 +23,7 @@ use Symfony\Component\Uid\Ulid;
class InspectUlidCommand extends Command class InspectUlidCommand extends Command
{ {
protected static $defaultName = 'ulid:inspect'; protected static $defaultName = 'ulid:inspect';
protected static $defaultDescription = 'Inspects a ULID'; protected static $defaultDescription = 'Inspect a ULID';
/** /**
* {@inheritdoc} * {@inheritdoc}

View File

@ -25,7 +25,7 @@ use Symfony\Component\Uid\UuidV6;
class InspectUuidCommand extends Command class InspectUuidCommand extends Command
{ {
protected static $defaultName = 'uuid:inspect'; protected static $defaultName = 'uuid:inspect';
protected static $defaultDescription = 'Inspects a UUID'; protected static $defaultDescription = 'Inspect a UUID';
/** /**
* {@inheritdoc} * {@inheritdoc}