not sure what I did here

This commit is contained in:
2024-12-22 01:18:32 +00:00
parent ba28fcca08
commit 0c902b93c4
3 changed files with 186 additions and 17 deletions

View File

@ -140,6 +140,13 @@ class Note
return $this;
}
public function setMembers(?array $members): static
{
$this->members = $members;
return $this;
}
public function getLocation(): ?NoteLocation
{
return $this->location;
@ -166,10 +173,10 @@ class Note
/**
* Method to calculate the number of minutes used for a visit rounded to the nearest 15 min increment
*
*
* @param int $precision
* The number of minutes to round the time to defaulted to 15
*
*
* @return int
* The number of minutes calculated
*/