Mercurial > hg > isophonics-drupal-site
view vendor/consolidation/annotated-command/src/Options/AutomaticOptionsProviderInterface.php @ 9:1fc0ff908d1f
Add another data file
author | Chris Cannam |
---|---|
date | Mon, 05 Feb 2018 12:34:32 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Consolidation\AnnotatedCommand\Options; use Consolidation\AnnotatedCommand\Parser\CommandInfo; use Symfony\Component\Console\Input\InputOption; /** * Option providers can add options to commands based on the annotations * present in a command. For example, a command that specifies @fields * will automatically be given --format and --fields options. * * @see AnnotatedCommandFactory::addListener() * @see HookManager::addOptionHook() */ interface AutomaticOptionsProviderInterface { /** * @return InputOption[] */ public function automaticOptions(CommandInfo $commandInfo); }