From b62ec65209707064ab15f60ec99285ef166cd664 Mon Sep 17 00:00:00 2001 From: Babak Alizadeh Date: Tue, 11 Feb 2025 01:22:09 +0000 Subject: [PATCH] bug fix in smspay for null values --- hesabixCore/src/Entity/SMSPays.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hesabixCore/src/Entity/SMSPays.php b/hesabixCore/src/Entity/SMSPays.php index f1204b5..80954f6 100644 --- a/hesabixCore/src/Entity/SMSPays.php +++ b/hesabixCore/src/Entity/SMSPays.php @@ -42,7 +42,7 @@ class SMSPays #[ORM\Column(length: 255, nullable: true)] private ?string $verifyCode = null; - #[ORM\Column(length: 255)] + #[ORM\Column(length: 255, nullable: true)] private ?string $gatePay = null; public function getId(): ?int