Mercurial > hg > isophonics-drupal-site
view vendor/consolidation/annotated-command/src/Options/AutomaticOptionsProviderInterface.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
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); }