bug fix in smspay for null values

This commit is contained in:
Hesabix 2025-02-11 01:22:09 +00:00
parent 673a962dfa
commit b62ec65209

View file

@ -42,7 +42,7 @@ class SMSPays
#[ORM\Column(length: 255, nullable: true)] #[ORM\Column(length: 255, nullable: true)]
private ?string $verifyCode = null; private ?string $verifyCode = null;
#[ORM\Column(length: 255)] #[ORM\Column(length: 255, nullable: true)]
private ?string $gatePay = null; private ?string $gatePay = null;
public function getId(): ?int public function getId(): ?int