diff --git a/src/Entity/User.php b/src/Entity/User.php index 11a1024..2705d91 100644 --- a/src/Entity/User.php +++ b/src/Entity/User.php @@ -98,6 +98,9 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface #[ORM\Column(length: 15)] private ?string $workPhone = null; + #[ORM\Column(type: Types::TEXT, nullable: true)] + private ?string $signature = null; + public function __construct() { $this->userCases = new ArrayCollection(); @@ -439,4 +442,16 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface return $ret; } + + public function getSignature(): ?string + { + return $this->signature; + } + + public function setSignature(?string $signature): static + { + $this->signature = $signature; + + return $this; + } }