From 74e811e9503f166600b71fb44a1f78f002a55c17 Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Sat, 11 Jan 2025 22:03:30 -0500 Subject: [PATCH] add docs for the case --- src/Entity/MemberCase.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Entity/MemberCase.php b/src/Entity/MemberCase.php index 48309e0..61f00da 100644 --- a/src/Entity/MemberCase.php +++ b/src/Entity/MemberCase.php @@ -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; + } }