Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | abstract class Extractor extends Step |
||
15 | { |
||
16 | protected ?Input $input = null; |
||
17 | |||
18 | public function getInput () : Input |
||
19 | { |
||
20 | return $this->input; |
||
|
|||
21 | } |
||
22 | |||
23 | public function setInput ( ?Input $input ) : void |
||
24 | { |
||
25 | $this->input = $input; |
||
26 | } |
||
27 | |||
28 | public abstract function extract (); |
||
29 | |||
30 | public function getArrayRepresentation () : array |
||
41 | } |
||
42 | } |
||
43 |