composer.json in the wrong place. Gone now.
[yaffs-website] / vendor / consolidation / annotated-command / src / Hooks / ExtractOutputInterface.php
1 <?php
2 namespace Consolidation\AnnotatedCommand\Hooks;
3
4 /**
5  * Extract Output hooks are used to select the particular
6  * data elements of the result that should be printed as
7  * the command output -- perhaps after being formatted.
8  *
9  * @see HookManager::addOutputExtractor()
10  */
11 interface ExtractOutputInterface
12 {
13     public function extractOutput($result);
14 }