We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b82c7e0 commit bc82db5Copy full SHA for bc82db5
src/Convertor.php
@@ -33,7 +33,7 @@ public static function convert(string $pdfPath, string $savePath, string $format
33
if (\in_array($format = strtolower($format), self::SUPPORTED_FORMATS, true) === false) {
34
throw new \InvalidArgumentException(
35
'Format "' . $format . '" is not supported. '
36
- . 'Did you mean "' . implode('", "', Convertor::SUPPORTED_FORMATS) . '"?'
+ . 'Did you mean "' . implode('", "', self::SUPPORTED_FORMATS) . '"?'
37
);
38
}
39
if (\is_file($pdfPath) === false) {
0 commit comments