add signature block

This commit is contained in:
Ryan Prather 2025-01-10 14:47:17 +00:00
parent 42fcb7b2f5
commit 6956256341

View File

@ -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;
}
}