composer.json in the wrong place. Gone now.
[yaffs-website] / vendor / consolidation / annotated-command / src / Hooks / InitializeHookInterface.php
1 <?php
2 namespace Consolidation\AnnotatedCommand\Hooks;
3
4 use Consolidation\AnnotatedCommand\AnnotationData;
5 use Symfony\Component\Console\Input\InputInterface;
6
7 /**
8  * Non-interactively (e.g. via configuration files) apply configuration values to the Input object.
9  *
10  * @see HookManager::addInitializeHook()
11  */
12 interface InitializeHookInterface
13 {
14     public function initialize(InputInterface $input, AnnotationData $annotationData);
15 }