Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class ExtractorResultInput extends Input |
||
13 | { |
||
14 | private ?Extractor $previousExtractor; |
||
15 | |||
16 | public function __construct ( Extractor $previousExtractor = null ) |
||
19 | } |
||
20 | |||
21 | public function getInput () : Extractor |
||
22 | { |
||
23 | return $this->previousExtractor; |
||
|
|||
24 | } |
||
25 | |||
26 | public function setInput ( $input ) : void |
||
29 | } |
||
30 | } |
||
31 |