| Total Complexity | 7 |
| Total Lines | 52 |
| 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 | * @param bool $lookUpBom |
||
| 51 | * |
||
| 52 | * @return string|bool |
||
| 53 | */ |
||
| 54 | protected function getNextNonEmptyLine($lookUpBom = false) |
||
| 74 |