Skip to content

Commit a5c8bd8

Browse files
committed
Fix coding standard.
1 parent 2aeea4c commit a5c8bd8

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/Configuration.php

+6-8
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,15 @@ public function __construct(
2222
public bool $trim = false,
2323
public ?int $cols = null,
2424
public ?int $rows = null,
25-
public bool $bestfit = false
25+
public bool $bestfit = false,
2626
) {
2727
$this->format = strtolower($format);
2828
if (in_array($this->format, self::SupportedFormats, true) === false) {
29-
throw new \InvalidArgumentException(
30-
sprintf(
31-
'Format "%s" is not supported. Did you mean "%s"?',
32-
$this->format,
33-
implode('", "', self::SupportedFormats),
34-
)
35-
);
29+
throw new \InvalidArgumentException(sprintf(
30+
'Format "%s" is not supported. Did you mean "%s"?',
31+
$this->format,
32+
implode('", "', self::SupportedFormats),
33+
));
3634
}
3735
if (is_file($pdfPath) === false) {
3836
throw new ConvertorException(sprintf('File "%s" does not exist.', $pdfPath));

0 commit comments

Comments
 (0)