Total Complexity | 8 |
Total Lines | 57 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | abstract class FileExtractorAbstract extends ExtractorAbstract |
||
21 | { |
||
22 | use FileHandlerTrait; |
||
23 | |||
24 | /** |
||
25 | * @param resource|string $input |
||
26 | * |
||
27 | * @throws YaEtlException |
||
28 | * @throws NodalFlowException |
||
29 | */ |
||
30 | public function __construct($input) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @param mixed $param |
||
39 | * |
||
40 | * @return bool |
||
41 | */ |
||
42 | public function extract($param = null) |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * @return string|false |
||
51 | */ |
||
52 | protected function getNextNonEmptyLine() |
||
63 | } |
||
64 | |||
65 | /** |
||
66 | * @return string|false |
||
67 | */ |
||
68 | protected function getNextNonEmptyChars() |
||
79 |