Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.
Merged
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
5 changes: 3 additions & 2 deletions src/CLI/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ protected function configure()
array(
new InputArgument(
'values',
InputArgument::IS_ARRAY
InputArgument::IS_ARRAY,
'Files and directories to analyze'
)
)
)
Expand All @@ -95,7 +96,7 @@ protected function configure()
'exclude',
null,
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
'Exclude a directory from code analysis'
'Exclude a directory from code analysis (must be relative to source)'
)
->addOption(
'log-pmd',
Expand Down