Skip to content

Commit f90755b

Browse files
committed
testing workflow
1 parent cc73152 commit f90755b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FormatRegistry.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public function convert(string $inputFile, string $toFormat): string
168168
if (!$this->isSupportedConversion($inputFormat, $toFormat)) {
169169
throw new UnsupportedConversionException($inputFormat->getName(), $toFormat);
170170
}
171-
echo("Checking if mime type is supported: " . $inputFormat->getMimeType() . " and " . $inputFile);
171+
echo("Format Mime Type: " . $inputFormat->getMimeType() . " InputFile Mime Type: " . File::mimeType($inputFile));
172172
if (!$this->isSupportedMimeType($inputFormat, File::mimeType($inputFile))) {
173173
throw new UnsupportedMimeTypeException($inputFormat->getName(), $toFormat);
174174
}

0 commit comments

Comments
 (0)