forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
16 lines
436 B
PHP
16 lines
436 B
PHP
<?php
|
|
namespace Consolidation\AnnotatedCommand\Hooks;
|
|
|
|
use Consolidation\AnnotatedCommand\AnnotationData;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
/**
|
|
* Non-interactively (e.g. via configuration files) apply configuration values to the Input object.
|
|
*
|
|
* @see HookManager::addInitializeHook()
|
|
*/
|
|
interface InitializeHookInterface
|
|
{
|
|
public function initialize(InputInterface $input, AnnotationData $annotationData);
|
|
}
|