ExtractOutputInterface
last analyzed

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
extractOutput() 0 1 ?
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
}
15