diff --git a/lib/Providers/Qr/BaconQrCodeProvider.php b/lib/Providers/Qr/BaconQrCodeProvider.php index bb25f38..3b192cb 100644 --- a/lib/Providers/Qr/BaconQrCodeProvider.php +++ b/lib/Providers/Qr/BaconQrCodeProvider.php @@ -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'); }