From 0bc7f2e9bc956b0cc20e921d0bc7313981fe2844 Mon Sep 17 00:00:00 2001 From: Ondrej Vlach Date: Thu, 18 Jan 2024 14:23:30 +0100 Subject: [PATCH] fix: QRCodePaymentIdentification - default values --- src/Entity/QRCode/QRCodePaymentIdentification.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Entity/QRCode/QRCodePaymentIdentification.php b/src/Entity/QRCode/QRCodePaymentIdentification.php index cb777b1..5474120 100644 --- a/src/Entity/QRCode/QRCodePaymentIdentification.php +++ b/src/Entity/QRCode/QRCodePaymentIdentification.php @@ -13,17 +13,17 @@ class QRCodePaymentIdentification { #[BankPaymentIdentificationNumber( message: 'messages.not_variable_symbol', )] - private ?string $variableSymbol; + private ?string $variableSymbol = null; #[BankPaymentIdentificationNumber( message: 'messages.not_specific_symbol', )] - private ?string $specificSymbol; + private ?string $specificSymbol = null; #[BankPaymentIdentificationNumber( message: 'messages.not_constant_symbol', )] // https://www.hyponamiru.cz/en/glossary/constant-symbol/ - private ?string $constantSymbol; + private ?string $constantSymbol = null; public function getVariableSymbol(): ?string {