Skip to content

Commit bc82db5

Browse files
committed
Convertor: Fix coding standard
1 parent b82c7e0 commit bc82db5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Convertor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public static function convert(string $pdfPath, string $savePath, string $format
3333
if (\in_array($format = strtolower($format), self::SUPPORTED_FORMATS, true) === false) {
3434
throw new \InvalidArgumentException(
3535
'Format "' . $format . '" is not supported. '
36-
. 'Did you mean "' . implode('", "', Convertor::SUPPORTED_FORMATS) . '"?'
36+
. 'Did you mean "' . implode('", "', self::SUPPORTED_FORMATS) . '"?'
3737
);
3838
}
3939
if (\is_file($pdfPath) === false) {

0 commit comments

Comments
 (0)