Skip to content

Commit

Permalink
Convertor: Fix coding standard
Browse files Browse the repository at this point in the history
  • Loading branch information
janbarasek committed Dec 14, 2020
1 parent b82c7e0 commit bc82db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Convertor.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static function convert(string $pdfPath, string $savePath, string $format
if (\in_array($format = strtolower($format), self::SUPPORTED_FORMATS, true) === false) {
throw new \InvalidArgumentException(
'Format "' . $format . '" is not supported. '
. 'Did you mean "' . implode('", "', Convertor::SUPPORTED_FORMATS) . '"?'
. 'Did you mean "' . implode('", "', self::SUPPORTED_FORMATS) . '"?'
);
}
if (\is_file($pdfPath) === false) {
Expand Down

0 comments on commit bc82db5

Please sign in to comment.