From 69562563415138241b8f9d9d35c30104e4c40ab6 Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Fri, 10 Jan 2025 14:47:17 +0000 Subject: [PATCH] add signature block --- src/Entity/User.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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; + } }