We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 901118d commit 46955c1Copy full SHA for 46955c1
src/Command/IncrementCommand.php
@@ -21,6 +21,7 @@
21
final class IncrementCommand extends Command
22
{
23
protected static $defaultName = 'bizkit:versioning:increment';
24
+ protected static $defaultDescription = 'Increments the version using the configured versioning strategy.';
25
26
/**
27
* @var string
@@ -65,7 +66,7 @@ public function __construct(
65
66
67
protected function configure(): void
68
- $this->setDescription('Increments the version using the configured versioning strategy.');
69
+ $this->setDescription(self::$defaultDescription);
70
}
71
72
protected function execute(InputInterface $input, OutputInterface $output): int
0 commit comments