Mercurial > hg > isophonics-drupal-site
view vendor/consolidation/annotated-command/src/Options/AutomaticOptionsProviderInterface.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
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); }