diff --git a/src/Code/Converters/BinaryFinder.php b/src/Code/Converters/BinaryFinder.php deleted file mode 100644 index a1dd2a6..0000000 --- a/src/Code/Converters/BinaryFinder.php +++ /dev/null @@ -1,28 +0,0 @@ - 'docx', 'format' => 'docx', 'name' => 'DOCX', 'class' => DocxReader::class], ['extension' => 'rtf', 'format' => 'rtf', 'name' => 'Rich text format', 'class' => RtfReader::class], // libraryies eather throws exception, not parses, or takes long to parse 2h file ['extension' => 'csv', 'format' => 'csv', 'name' => 'Coma Separated Values', 'class' => CsvConverter::class], // must be last from bottom - ['extension' => 'bin', 'format' => 'bin', 'name' => 'Binary', 'class' => BinaryFinder::class], ['extension' => 'txt', 'format' => 'txt', 'name' => 'Plaintext', 'class' => TxtConverter::class], // must be the last one ];