We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a6cb19 commit d913384Copy full SHA for d913384
.github/workflows/e2e_command_with_option.yaml
@@ -50,6 +50,8 @@ jobs:
50
php ../../bin/rector process some_file.php --output-format json
51
php ../../bin/rector process some_file.php --output-format=json
52
53
+ php ../../bin/rector p some_file.php --output-format=json
54
+
55
# with implicit process command
56
../../bin/rector --output-format json --dry-run
57
../../bin/rector --output-format=json --dry-run
src/Console/Command/ProcessCommand.php
@@ -54,6 +54,7 @@ public function __construct(
protected function configure(): void
{
$this->setName('process');
+ $this->setAliases(['p']);
58
$this->setDescription('Upgrades or refactors source code with provided Rector rules');
59
$this->setHelp(
60
<<<'EOF'
0 commit comments