split constructor in multilines

This commit is contained in:
Nicolas CARPi
2022-12-29 13:47:06 +01:00
parent dc4e99e8c3
commit 86338cf3cd
+6 -2
View File
@@ -22,8 +22,12 @@ class BaconQrCodeProvider implements IQRCodeProvider
/**
* Ensure we using the latest Bacon QR Code and specify default options
*/
public function __construct(private int $borderWidth = 4, private string|array $backgroundColour = '#ffffff', private string|array $foregroundColour = '#000000', private string $format = 'png')
{
public function __construct(
private int $borderWidth = 4,
private string|array $backgroundColour = '#ffffff',
private string|array $foregroundColour = '#000000',
private string $format = 'png',
) {
if (!class_exists(ImagickImageBackEnd::class)) {
throw new RuntimeException('Make sure you are using version 2 of Bacon QR Code');
}