| Total Complexity | 7 |
| Total Lines | 48 |
| 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 |
||
| 21 | } |
||
| 22 | |||
| 23 | public function setInput ( ?Input $input ) : void |
||
| 26 | } |
||
| 27 | |||
| 28 | public abstract function extract (); |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var array |
||
| 32 | */ |
||
| 33 | protected array $result; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | public function getResult () : array |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param array $result |
||
| 45 | */ |
||
| 46 | public function setResult ( array $result ) : void |
||
| 47 | { |
||
| 48 | $this->result = $result; |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getArrayRepresentation () : array |
||
| 62 | } |
||
| 63 | } |
||
| 64 |