| Total Complexity | 6 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | abstract class FileExtractorAbstract extends ExtractorAbstract |
||
| 21 | { |
||
| 22 | use FileHandlerTrait; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $srcFile; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param resource|string $input |
||
| 31 | * |
||
| 32 | * @throws YaEtlException |
||
| 33 | * @throws NodalFlowException |
||
| 34 | */ |
||
| 35 | public function __construct($input) |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @param mixed $param |
||
| 50 | * |
||
| 51 | * @return bool |
||
| 52 | */ |
||
| 53 | public function extract($param = null) |
||
| 68 |