From 6c8f71ed79760f4a4b5747a713fb7385680d76e7 Mon Sep 17 00:00:00 2001 From: sakulb <95277083+sakulb@users.noreply.github.com> Date: Thu, 23 Feb 2023 15:23:03 +0100 Subject: [PATCH] Smallfix (#10) * Add person and avatar to user. * Static setters for user. * Static setters for user. --- src/Entity/Embeds/Person.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/Embeds/Person.php b/src/Entity/Embeds/Person.php index e9fb958..6a54068 100644 --- a/src/Entity/Embeds/Person.php +++ b/src/Entity/Embeds/Person.php @@ -26,7 +26,7 @@ class Person #[Serialize] private string $personLastName = ''; - #[ORM\Column(type: Types::STRING, length: 240)] + #[ORM\Column(type: Types::STRING, length: 242)] #[Assert\AtLeastOneOf([ new Assert\Blank(), new Assert\Length(min: 3, max: 242),