add docs for the case

This commit is contained in:
Ryan Prather 2025-01-11 22:03:30 -05:00
parent b7c0b3de6b
commit 74e811e950
Signed by: ryan
GPG Key ID: FA4291AE0183344F

View File

@ -109,6 +109,8 @@ class MemberCase
#[ORM\OneToMany(targetEntity: StaffNote::class, mappedBy: 'memberCase')]
private Collection $staffNotes;
private array $docs;
public function __construct()
{
$this->userCases = new ArrayCollection();
@ -505,4 +507,9 @@ class MemberCase
return $this;
}
public function getDocs(): array
{
return $this->docs;
}
}