Added explanation for filter argument in ViewCommand.

This commit is contained in:
Abdulmhsen B. A. A
2022-03-06 18:16:58 +03:00
parent 11efa1f22f
commit e2012dc3e9

View File

@@ -29,7 +29,11 @@ final class ViewCommand extends Command
''
)
->addOption('use-config', null, InputOption::VALUE_REQUIRED, 'Use different servers.yaml.')
->addArgument('filter', InputArgument::OPTIONAL, '');
->addArgument(
'filter',
InputArgument::OPTIONAL,
'Can be any key from servers yaml, use dot notion to access sub keys, for example webhook.token'
);
}
/**