Skip to content

Commit d89c1ae

Browse files
committed
doc: argument description
1 parent b182404 commit d89c1ae

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ composer global require --dev soyuka/pmu # ability to link projects globally
1313
## Configuration
1414

1515
```json5
16+
// composer.json
1617
{
1718
"name": "test/monorepo",
1819
// Specify the projects that are part of your monorepository

src/Command/GraphCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected function configure(): void
2626
{
2727
$this->setName('graph')
2828
->setDefinition([
29-
new InputArgument('projects', InputArgument::IS_ARRAY | InputArgument::OPTIONAL, ''),
29+
new InputArgument('projects', InputArgument::IS_ARRAY | InputArgument::OPTIONAL, 'Projects to generate the graph for.'),
3030
])
3131
->setDescription('Outputs the graph of dependencies in the Dot format');
3232
}

0 commit comments

Comments
 (0)