Skip to content
Open
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
1 change: 1 addition & 0 deletions src/Cli/Command/Issue/Apply.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ protected function configure()
{
$this
->setName('issue:apply')
->setAliases(['ia'])
->addArgument('nid', InputArgument::REQUIRED, 'The issue node ID')
->setDescription('Applies the latest patch from an issue.')
->setHelp(implode(PHP_EOL, [
Expand Down
1 change: 1 addition & 0 deletions src/Cli/Command/Issue/Branch.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ protected function configure()
{
$this
->setName('issue:branch')
->setAliases(['ib'])
->addArgument('nid', InputArgument::REQUIRED, 'The issue node ID')
->setDescription('Creates a branch for the issue.')
->setHelp(implode(PHP_EOL, [
Expand Down
1 change: 1 addition & 0 deletions src/Cli/Command/Issue/Interdiff.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ protected function configure()
{
$this
->setName('issue:interdiff')
->setAliases(['ii'])
->addArgument('nid', InputArgument::OPTIONAL, 'The issue node ID')
->setDescription('Generate an interdiff for the issue from committed local changes.');
}
Expand Down
1 change: 1 addition & 0 deletions src/Cli/Command/Issue/Link.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ protected function configure()
{
$this
->setName('issue:link')
->setAliases(['il'])
->addArgument('nid', InputArgument::OPTIONAL, 'The issue node ID')
->setDescription('Opens an issue');
}
Expand Down
1 change: 1 addition & 0 deletions src/Cli/Command/Issue/Patch.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ protected function configure()
{
$this
->setName('issue:patch')
->setAliases(['ip'])
->addArgument('nid', InputArgument::OPTIONAL, 'The issue node ID')
->setDescription('Generate a patch for the issue from committed local changes.');
}
Expand Down
1 change: 1 addition & 0 deletions src/Cli/Command/Project/Kanban.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ protected function configure()
{
$this
->setName('project:kanban')
->setAliases(['pk'])
->addArgument('project', InputArgument::OPTIONAL, 'The project machine name')
->setDescription('Opens project kanban');
}
Expand Down
1 change: 1 addition & 0 deletions src/Cli/Command/Project/Link.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ protected function configure()
{
$this
->setName('project:link')
->setAliases(['pl'])
->addArgument('project', InputArgument::OPTIONAL, 'The project machine name')
->setDescription('Opens project page');
}
Expand Down
1 change: 1 addition & 0 deletions src/Cli/Command/Project/Releases.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ protected function configure()
{
$this
->setName('project:releases')
->setAliases(['pr'])
->addArgument('project', InputArgument::OPTIONAL, 'The project machine name')
->setDescription('Lists available releases');
}
Expand Down